From 53e789fe6abe0ab72831f28d6df75ddd652276e2 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 12 Sep 2008 01:28:55 +0000 Subject: [PATCH] Use --force-local when calling tar in bindisttest/ Otherwise it thinks that c:/foo is a remote file --- bindisttest/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindisttest/Makefile b/bindisttest/Makefile index 306d069..e6e2ed7 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 -- 1.7.10.4