From: Colin Clark Date: Tue, 1 Feb 2022 11:03:22 +0000 (+0000) Subject: Bug fix: check-compiles.sh X-Git-Tag: gtk2final~51 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=3d37d4838d96e67c9862ea4e5a8822f777c7964e Bug fix: check-compiles.sh Fix minor coding error --- diff --git a/scripts/check-compiles.sh b/scripts/check-compiles.sh index 399cc89e..755073cc 100755 --- a/scripts/check-compiles.sh +++ b/scripts/check-compiles.sh @@ -62,7 +62,7 @@ compile() done } -disable_list=" "$(awk -F'[\[\]]' '/AC_HELP_STRING\(\[--disable-/ {if ($2 != "gtk3") print $2}' configure.ac | tr '\n' ' ') +disable_list=" "$(awk --field-separator '[][]' '/AC_HELP_STRING\(\[--disable-/ {if ($2 != "gtk3") print $2}' configure.ac | tr '\n' ' ') echo "Disabled list: :$disable_list"