summaryrefslogtreecommitdiff
path: root/bindisttest
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-09-12 01:28:55 +0000
committerIan Lynagh <igloo@earth.li>2008-09-12 01:28:55 +0000
commit53e789fe6abe0ab72831f28d6df75ddd652276e2 (patch)
treeb82c49f0559a50f65317ef1ec42cc94b55ecc576 /bindisttest
parentb562c2cb4e7a77387ac177f43680506c52c2bb95 (diff)
downloadhaskell-53e789fe6abe0ab72831f28d6df75ddd652276e2.tar.gz
Use --force-local when calling tar in bindisttest/
Otherwise it thinks that c:/foo is a remote file
Diffstat (limited to 'bindisttest')
-rw-r--r--bindisttest/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/bindisttest/Makefile b/bindisttest/Makefile
index 306d069add..e6e2ed7292 100644
--- a/bindisttest/Makefile
+++ b/bindisttest/Makefile
@@ -12,7 +12,8 @@ all:
$(RM) -rf $(BIN_DIST_INST_SUBDIR)
$(RM) -rf ghc*
$(RM) HelloWorld HelloWorld.o HelloWorld.hi output
- $(TAR) -jxf $(BIN_DIST_TAR_BZ2)
+ # --force-local makes tar not think that c:/foo refers to a remote file
+ $(TAR) --force-local -jxf $(BIN_DIST_TAR_BZ2)
ifeq "$(Windows)" "YES"
mv $(BIN_DIST_NAME) $(BIN_DIST_INST_DIR)
else