Fix a bug on Windows

This commit is contained in:
Laurent Rineau
2015-01-15 14:40:47 +01:00
parent fd2026a044
commit 3f0166686b
+2 -2
View File
@@ -99,7 +99,7 @@ compile_and_run()
echo "Compiling \$1 ... "
SUCCESS="y"
if eval '\${MAKE_CMD} VERBOSE=ON -fMakefile \$1' ; then
if eval '"\${MAKE_CMD}" VERBOSE=ON -fMakefile \$1' ; then
echo " successful compilation of \$1" >> \$ERRORFILE
else
echo " ERROR: compilation of \$1" >> \$ERRORFILE
@@ -177,7 +177,7 @@ fi
#
if [ -n "\${NEED_CLEAN}" ]; then
if ! ( uname | grep -q "CYGWIN" ) ; then
\${MAKE_CMD} -fMakefile clean
"\${MAKE_CMD}" -fMakefile clean
fi
fi
EOF