From 3d37d4838d96e67c9862ea4e5a8822f777c7964e Mon Sep 17 00:00:00 2001 From: Colin Clark Date: Tue, 1 Feb 2022 11:03:22 +0000 Subject: [PATCH] Bug fix: check-compiles.sh Fix minor coding error --- 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 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" -- 2.20.1