From 4f882ff8ec81cbc42b097d3aee8ca4a8013f538b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Correa=20G=C3=B3mez?= Date: Mon, 22 Nov 2021 15:46:15 +0100 Subject: add install_symlink function Allows installing symlinks directly from meson, which can become useful in multiple scenarios. Current main use is to help moving forward #9557 --- mesonbuild/ast/interpreter.py | 1 + 1 file changed, 1 insertion(+) (limited to 'mesonbuild/ast/interpreter.py') diff --git a/mesonbuild/ast/interpreter.py b/mesonbuild/ast/interpreter.py index ec93ff5..f5a1e5e 100644 --- a/mesonbuild/ast/interpreter.py +++ b/mesonbuild/ast/interpreter.py @@ -103,6 +103,7 @@ class AstInterpreter(InterpreterBase): 'install_man': self.func_do_nothing, 'install_data': self.func_do_nothing, 'install_subdir': self.func_do_nothing, + 'install_symlink': self.func_do_nothing, 'install_emptydir': self.func_do_nothing, 'configuration_data': self.func_do_nothing, 'configure_file': self.func_do_nothing, -- cgit v1.1