From a48167eaaa984fbdc1ad31c2c674058ba3669ac6 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Thu, 4 Jun 2015 17:10:33 -0500 Subject: build: Clean testsuite before sdist When making the `sdist` tarball, we don't really need anything inside $(TOP)/testsuite in order to do our thing. So make sure we clean it first to avoid situations like #10406. With D917 landed, this can actually avoided entirely by fixing the official release process to instead build an `sdist` //first// from the clean git repository and then build that (to fixpoint) and test it. Then the originall clean tarball can be shipped. But it's nice to be safe in the general case where someone might want to (in the future) `sdist` out of their build tree. Signed-off-by: Austin Seipp Reviewed By: thomie Differential Revision: https://phabricator.haskell.org/D956 GHC Trac Issues: #10406 --- ghc.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/ghc.mk b/ghc.mk index 42b1784045..9a2ba481cd 100644 --- a/ghc.mk +++ b/ghc.mk @@ -1175,6 +1175,7 @@ sdist-testsuite-prep : mkdir -p $(SRC_DIST_TESTSUITE_DIR) mkdir -p $(SRC_DIST_TESTSUITE_DIR)/testsuite cd $(SRC_DIST_TESTSUITE_DIR)/testsuite && lndir $(TOP)/testsuite + cd $(SRC_DIST_TESTSUITE_DIR) && $(MAKE) distclean .PHONY: sdist-ghc sdist-ghc: sdist-ghc-prep -- cgit v1.2.1