From e05a62d3297c2487b3b97f0a848094bafd02f55e Mon Sep 17 00:00:00 2001 From: mattijs Date: Mon, 28 Jan 2019 11:56:57 +0000 Subject: [PATCH] COMP: Allwmake: work with -q --- src/functionObjects/graphics/Allwmake | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/functionObjects/graphics/Allwmake b/src/functionObjects/graphics/Allwmake index a4a8f46b9b..5e531d4629 100755 --- a/src/functionObjects/graphics/Allwmake +++ b/src/functionObjects/graphics/Allwmake @@ -1,8 +1,11 @@ #!/bin/sh cd ${0%/*} || exit 1 # Run from this directory +. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments #------------------------------------------------------------------------------ - -runTimePostProcessing/Allwmake $* +if [ "$targetType" != "objects" ] +then + runTimePostProcessing/Allwmake $* +fi #------------------------------------------------------------------------------