diff options
author | Roman Leshchinskiy <rl@cse.unsw.edu.au> | 2009-11-25 11:59:53 +0000 |
---|---|---|
committer | Roman Leshchinskiy <rl@cse.unsw.edu.au> | 2009-11-25 11:59:53 +0000 |
commit | a7d15c389abb953f26a2cefdfde733d76904d19e (patch) | |
tree | e287abd8b1bf4aa706f79f4a2b550524d633ff55 /bindisttest | |
parent | d24fc63ae1a193917d35ef3d4e31aba4e283267d (diff) | |
download | haskell-a7d15c389abb953f26a2cefdfde733d76904d19e.tar.gz |
Pass --no-user-package-conf to ghc-pkg in bindisttest
Diffstat (limited to 'bindisttest')
-rw-r--r-- | bindisttest/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bindisttest/Makefile b/bindisttest/Makefile index 0ac92265bc..7332bab24a 100644 --- a/bindisttest/Makefile +++ b/bindisttest/Makefile @@ -44,7 +44,8 @@ endif $(BIN_DIST_INST_DIR)/bin/ghc --make HelloWorld ./HelloWorld > output $(CONTEXT_DIFF) output expected_output - $(BIN_DIST_INST_DIR)/bin/ghc-pkg check +# Without --no-user-package-conf we might pick up random packages from ~/.ghc + $(BIN_DIST_INST_DIR)/bin/ghc-pkg check --no-user-package-conf clean distclean: $(RM) -rf $(BIN_DIST_INST_SUBDIR) |