From 3e114d158070904e610d44a6dc69267546a78239 Mon Sep 17 00:00:00 2001 From: Colin Clark Date: Mon, 14 Feb 2022 12:23:01 +0000 Subject: [PATCH] Bug fix: check-compiles.sh Fix coding error - parameters not processed correctly --- scripts/check-compiles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.20.1