summaryrefslogtreecommitdiff
path: root/testsuite/mk/boilerplate.mk
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2020-12-16 15:01:12 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-12-18 05:54:56 -0500
commitc53b38dd5c1e38517a0c686d2aa9f8187629299c (patch)
tree00d89b491a0bfbe8126ac5ed81326352a904eeee /testsuite/mk/boilerplate.mk
parent3e9b745253cdf7299a692a95dceac87d6d0ff82f (diff)
downloadhaskell-c53b38dd5c1e38517a0c686d2aa9f8187629299c.tar.gz
testsuite: Fix two shell quoting issues
Fixes two ancient bugs in the testsuite driver makefiles due to insufficient quoting. I have no idea how these went unnoticed for so long. Thanks to @tomjaguarpaw for testing.
Diffstat (limited to 'testsuite/mk/boilerplate.mk')
-rw-r--r--testsuite/mk/boilerplate.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/mk/boilerplate.mk b/testsuite/mk/boilerplate.mk
index 5cdc40e68c..6ccc43ed8d 100644
--- a/testsuite/mk/boilerplate.mk
+++ b/testsuite/mk/boilerplate.mk
@@ -244,7 +244,7 @@ ifeq "$(ghc_config_mk)" ""
ghc_config_mk = $(TOP)/mk/ghcconfig$(subst $(space),_,$(subst :,_,$(subst /,_,$(subst \,_,$(TEST_HC))))).mk
$(ghc_config_mk) : $(TOP)/mk/ghc-config
- $(TOP)/mk/ghc-config "$(TEST_HC)" >"$@"; if [ $$? != 0 ]; then $(RM) "$@"; exit 1; fi
+ $(TOP)/mk/ghc-config "$(TEST_HC)" >"$@"; if [ "$$?" != "0" ]; then $(RM) "$@"; exit 1; fi
# If the ghc-config fails, remove $@, and fail
endif