diff options
author | Ian Lynagh <igloo@earth.li> | 2010-04-16 15:54:20 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-04-16 15:54:20 +0000 |
commit | 6fc2d9df38f7f198d2bf0197c8723e05c6d00b56 (patch) | |
tree | cc3fab67766bcaa8d7487281c691dbe9676f6292 /testsuite | |
parent | c3b2f6640edd183e2f6d89c5a4e2044345a7b4ca (diff) | |
download | haskell-6fc2d9df38f7f198d2bf0197c8723e05c6d00b56.tar.gz |
Fix quoting in Makefile
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/timeout/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/timeout/Makefile b/testsuite/timeout/Makefile index c9e9075402..4b203cca16 100644 --- a/testsuite/timeout/Makefile +++ b/testsuite/timeout/Makefile @@ -29,7 +29,7 @@ $(TIMEOUT_PROGRAM): timeout.py mkdir install-inplace/bin cp $< $@.py echo '#!/bin/sh' > $@ - echo exec ${PYTHON} \$$0.py \"\$$@\" >> $@ + echo 'exec "${PYTHON}" $$0.py "$$@"' >> $@ chmod +x $@ else # The python timeout program doesn't work on mingw, so we still use the |