From: Colin Clark Date: Mon, 14 Feb 2022 12:23:01 +0000 (+0000) Subject: Bug fix: check-compiles.sh X-Git-Tag: gtk2final~42 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=3e114d158070904e610d44a6dc69267546a78239 Bug fix: check-compiles.sh Fix coding error - parameters not processed correctly --- diff --git a/scripts/check-compiles.sh b/scripts/check-compiles.sh index 755073cc..03c0e39b 100755 --- a/scripts/check-compiles.sh +++ b/scripts/check-compiles.sh @@ -57,7 +57,7 @@ compile() echo -e " \e[32m $1 $gtk $debug_flags $disabled " sudo make maintainer-clean > /dev/null 2>&1 - ./autogen.sh " ${variant[$i]}" > /dev/null 2>&1 + ./autogen.sh "${variant[$i]}" > /dev/null 2>&1 make -j > /dev/null done }