diff options
author | Ian Lynagh <igloo@earth.li> | 2009-10-21 11:40:48 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-10-21 11:40:48 +0000 |
commit | bcdf3c597f080482904ef49359e100c16d376849 (patch) | |
tree | 96b7296ebabe2d0f876de8dec43046fcba93fd30 /testsuite/mk | |
parent | 3bdc27cbaf591cb98be52366493635ebd9a12a53 (diff) | |
download | haskell-bcdf3c597f080482904ef49359e100c16d376849.tar.gz |
Quoting fix
Diffstat (limited to 'testsuite/mk')
-rw-r--r-- | testsuite/mk/test.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/mk/test.mk b/testsuite/mk/test.mk index f04fa6fb78..e2ee1181e5 100644 --- a/testsuite/mk/test.mk +++ b/testsuite/mk/test.mk @@ -43,7 +43,7 @@ else RUNTEST_OPTS += -e ghc_with_native_codegen=0 endif -HAVE_PROFILING:=$(if $(wildcard $(shell $(GHC_PKG) field haskell98 library-dirs | sed 's/^[^:]*: *//')/libHShaskell98-*_p.a),YES,NO) +HAVE_PROFILING:=$(if $(wildcard $(shell "$(GHC_PKG)" field haskell98 library-dirs | sed 's/^[^:]*: *//')/libHShaskell98-*_p.a),YES,NO) ifeq "$(HAVE_PROFILING)" "YES" RUNTEST_OPTS += -e ghc_with_profiling=1 |