diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-03-10 21:41:15 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-03-23 00:12:59 +0200 |
commit | a165e17a7ebc50f207281fb85c1d66bb315a0996 (patch) | |
tree | 978cd9cbf9efed7162acc2831beb6803124314dc /mesonbuild/interpreter.py | |
parent | 4fda4f50120fb8464fdce279f970c70bd9526d96 (diff) | |
download | meson-nopipe.tar.gz |
Remove -pipe from default list of args. Closes #8508.nopipe
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 68744ef6b..26d844dda 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -4667,9 +4667,6 @@ different subdirectory. elif arg == '-g': mlog.warning(f'Consider using the built-in debug option instead of using "{arg}".', location=self.current_node) - elif arg == '-pipe': - mlog.warning("You don't need to add -pipe, Meson will use it automatically when it is available.", - location=self.current_node) elif arg.startswith('-fsanitize'): mlog.warning(f'Consider using the built-in option for sanitizers instead of using "{arg}".', location=self.current_node) |