Skip to content
Snippets Groups Projects
Commit 53e789fe authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Use --force-local when calling tar in bindisttest/

Otherwise it thinks that c:/foo is a remote file
parent b562c2cb
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment