From 69e02d94f52817c48f83252c309783d4a4a6aeef Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Fri, 3 May 2024 14:10:24 +0200 Subject: [PATCH] meson: Remove --debug from mkosi arguments The exit status issue for which we introduced this was fixed so let's remove --debug again to make the meson output less verbose. --- meson.build | 1 - test/integration-test-wrapper.py | 1 - 2 files changed, 2 deletions(-) diff --git a/meson.build b/meson.build index 78bd252f90..0b27285da0 100644 --- a/meson.build +++ b/meson.build @@ -2619,7 +2619,6 @@ if mkosi.found() '--cache-dir', meson.current_build_dir() / 'mkosi.cache', '--build-dir', meson.current_build_dir() / 'mkosi.builddir', '--force', - '--debug', 'build', ], depends : mkosi_depends, diff --git a/test/integration-test-wrapper.py b/test/integration-test-wrapper.py index 1954d0fec0..af8be89264 100755 --- a/test/integration-test-wrapper.py +++ b/test/integration-test-wrapper.py @@ -81,7 +81,6 @@ def main(): cmd = [ 'mkosi', - '--debug', '--directory', os.fspath(args.meson_source_dir), '--output-dir', os.fspath(args.meson_build_dir / 'mkosi.output'), '--extra-search-path', os.fspath(args.meson_build_dir),