From a7d15c389abb953f26a2cefdfde733d76904d19e Mon Sep 17 00:00:00 2001 From: Roman Leshchinskiy Date: Wed, 25 Nov 2009 11:59:53 +0000 Subject: [PATCH] Pass --no-user-package-conf to ghc-pkg in bindisttest --- bindisttest/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindisttest/Makefile b/bindisttest/Makefile index 0ac9226..7332bab 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) -- 1.7.10.4