summaryrefslogtreecommitdiff
path: root/bindisttest
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2010-06-16 20:56:11 +0000
committerIan Lynagh <igloo@earth.li>2010-06-16 20:56:11 +0000
commit8c4e569427730d8fb80883935c212014c382e052 (patch)
tree985d0ac10e20e3d40749124e2b5f87e672d8f835 /bindisttest
parent312bd91e3661b9d48652dfc446a15ed9289a26b5 (diff)
downloadhaskell-8c4e569427730d8fb80883935c212014c382e052.tar.gz
Fix bindisttest Makefile
Diffstat (limited to 'bindisttest')
-rw-r--r--bindisttest/Makefile2
-rw-r--r--bindisttest/ghc.mk2
2 files changed, 2 insertions, 2 deletions
diff --git a/bindisttest/Makefile b/bindisttest/Makefile
index cf8e920a5e..238bce7650 100644
--- a/bindisttest/Makefile
+++ b/bindisttest/Makefile
@@ -36,7 +36,7 @@ all:
# NB. tar has funny interpretation of filenames sometimes (thinking
# c:/foo is a remote file), so it's safer to bzip and then pipe into
# tar rather than using tar -xjf:
- cd a/b/c/ && bzip2 -cd ../../../$(BIN_DIST_TEST_TAR_BZ2) | $(TAR) -xf -
+ cd a/b/c/ && $(BZIP2_CMD) -cd ../../../$(BIN_DIST_TEST_TAR_BZ2) | $(TAR_CMD) -xf -
ifeq "$(Windows)" "YES"
mv a/b/c/$(BIN_DIST_NAME) $(BIN_DIST_INST_DIR)
else
diff --git a/bindisttest/ghc.mk b/bindisttest/ghc.mk
index be9143b651..4705cef2b0 100644
--- a/bindisttest/ghc.mk
+++ b/bindisttest/ghc.mk
@@ -30,7 +30,7 @@ test_bindist:
# NB. tar has funny interpretation of filenames sometimes (thinking
# c:/foo is a remote file), so it's safer to bzip and then pipe into
# tar rather than using tar -xjf:
- cd bindisttest/a/b/c/ && bzip2 -cd ../../../../$(BIN_DIST_TEST_TAR_BZ2) | $(TAR) -xf -
+ cd bindisttest/a/b/c/ && $(BZIP2_CMD) -cd ../../../../$(BIN_DIST_TEST_TAR_BZ2) | $(TAR_CMD) -xf -
ifeq "$(Windows)" "YES"
mv bindisttest/a/b/c/$(BIN_DIST_NAME) $(BIN_DIST_INST_DIR)
else