From 7f65bf79c5b53006cda40fe02b6d8f6ca5351d38 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 16 May 2009 12:55:27 +0000 Subject: [PATCH 1/1] Tweak bindist creation libraries built by stage2 need all their bits in the bindist too. We were testing (stage == 1) rather than (stage /= 0). --- rules/build-package.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/build-package.mk b/rules/build-package.mk index 9c9e7e2..afe69ac 100644 --- a/rules/build-package.mk +++ b/rules/build-package.mk @@ -145,7 +145,7 @@ $(call haddock,$1,$2) endif # package-data.mk exists # Don't put bootstrapping packages in the bindist -ifeq "$3" "1" +ifneq "$3" "0" BINDIST_EXTRAS += $1/*.cabal $1/$2/setup-config $1/LICENSE BINDIST_EXTRAS += $$($1_$2_INSTALL_INCLUDES_SRCS) endif -- 1.7.10.4