From c52ad67a7cefc602a1a415eca0f92cd23beaf28f Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Wed, 11 Sep 2013 16:38:18 -0400 Subject: [PATCH 1/1] Test for gmqcc in check-proj --- misc/check-proj.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/misc/check-proj.sh b/misc/check-proj.sh index a97030a..6573eda 100755 --- a/misc/check-proj.sh +++ b/misc/check-proj.sh @@ -71,12 +71,13 @@ else fi # compile projects in those directories +which gmqcc >> /dev/null || (echo "error gmqcc not installed" && exit 1) pushd ~/.gmqcc/testsuite/projects >> /dev/null find . -maxdepth 1 -mindepth 1 -type d -printf "%f\n" | while read -r line do - echo -n "compiling $line..." + echo -n "compiling $line... " pushd "$line" >> /dev/null - gmqcc -std=qcc >> /dev/null + gmqcc -std=qcc > /dev/null 2>&1 if [ $? -ne 0 ]; then echo "error" else -- 2.39.2