From: Martin Taibr Date: Mon, 28 Aug 2017 15:42:43 +0000 (+0200) Subject: hide 2 redundant echos X-Git-Tag: xonotic-v0.8.5~1265^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c1afbb3db4d2b8f1ca73b331ebe00cd276a99f1b;p=xonotic%2Fxonotic-data.pk3dir.git hide 2 redundant echos --- diff --git a/qcsrc/tools/qcc.sh b/qcsrc/tools/qcc.sh index 15cbfc4aa..a9362cc99 100755 --- a/qcsrc/tools/qcc.sh +++ b/qcsrc/tools/qcc.sh @@ -20,7 +20,7 @@ function qpp() { server) DEFS="-DGAMEQC -DSVQC" ;; esac - >&2 echo + ${CPP} "${@:3}" ${DEFS} "${IN}" + #>&2 echo + ${CPP} "${@:3}" ${DEFS} "${IN}" set +e # additional information ${CPP} "${@:3}" ${DEFS} \ @@ -36,7 +36,7 @@ function qpp() { } function qcc() { - >&2 echo + $(basename ${QCC}) $@ + #>&2 echo + $(basename ${QCC}) $@ # FIXME: relative compiler path is too deep (cd tools && ${QCC} "$@") }