diff options
author | Ian Lynagh <igloo@earth.li> | 2009-05-16 12:55:27 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-05-16 12:55:27 +0000 |
commit | 7f65bf79c5b53006cda40fe02b6d8f6ca5351d38 (patch) | |
tree | 535c50670289d4159d21641244b5fbc838e05e0d /rules/build-package.mk | |
parent | 6793a033e1ce41f77316675e8f7aa83196a9b211 (diff) | |
download | haskell-7f65bf79c5b53006cda40fe02b6d8f6ca5351d38.tar.gz |
Tweak bindist creation
libraries built by stage2 need all their bits in the bindist too.
We were testing (stage == 1) rather than (stage /= 0).
Diffstat (limited to 'rules/build-package.mk')
-rw-r--r-- | rules/build-package.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/build-package.mk b/rules/build-package.mk index 9c9e7e2021..afe69ac159 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 |