diff options
| author | Charles Brunet <charles.brunet@optelgroup.com> | 2023-02-08 20:36:50 -0500 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-02-13 13:13:04 -0500 |
| commit | ce62190b17e136c5b6810d3360b2cd71d0756920 (patch) | |
| tree | 7515176ee294cc0b729114e30ad4743a3123c6a6 | |
| parent | 7ab2892eb068adba51fac0652a70d3ec9649395b (diff) | |
| download | meson-ce62190b17e136c5b6810d3360b2cd71d0756920.tar.gz | |
Fix displaying outputs with add_*_script
#8259 induced a regression, causing Meson 0.57.0 and upward to
stop printing outputs of scripts added using `meson.add_*_script()`.
This makes _find_source_scripts() mark executables as verbose
in meson_exe.
| -rw-r--r-- | mesonbuild/interpreter/mesonmain.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter/mesonmain.py b/mesonbuild/interpreter/mesonmain.py index 1a902ad3b..c8c80b29b 100644 --- a/mesonbuild/interpreter/mesonmain.py +++ b/mesonbuild/interpreter/mesonmain.py @@ -102,7 +102,7 @@ class MesonMain(MesonInterpreterObject): largs.append(found) largs.extend(args) - es = self.interpreter.backend.get_executable_serialisation(largs) + es = self.interpreter.backend.get_executable_serialisation(largs, verbose=True) es.subproject = self.interpreter.subproject return es |
