Skip to content
Snippets Groups Projects
Commit e540e333 authored by Henry Weller's avatar Henry Weller
Browse files

wmake/scripts/AllwmakeParseArguments: Avoid duplicate command message

when Allwmake is called from wmake -all
parent a856ea0b
Branches
Tags
No related merge requests found
......@@ -90,14 +90,6 @@ do
done
#------------------------------------------------------------------------------
# Print command
#------------------------------------------------------------------------------
[ -z "$targetType" ] || targetSpace=" "
echo "$Script $targetType$targetSpace$(echo $PWD | sed s%$WM_PROJECT_DIR/%% )"
#------------------------------------------------------------------------------
# Execute wmake -all if not called from wmake
#------------------------------------------------------------------------------
......@@ -105,6 +97,10 @@ echo "$Script $targetType$targetSpace$(echo $PWD | sed s%$WM_PROJECT_DIR/%% )"
if [ -z "$fromWmake" ]
then
exec wmake -all $qOpt $*
else
# Print command
[ -z "$targetType" ] || targetSpace=" "
echo "$Script $targetType$targetSpace$(echo $PWD | sed s%$WM_PROJECT_DIR/%% )"
fi
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment