diff options
author | Ian Lynagh <igloo@earth.li> | 2009-05-21 22:35:19 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-05-21 22:35:19 +0000 |
commit | acc388da8a787889597f34ccd704e24234763015 (patch) | |
tree | 119ad594e93fade1566e2ce4fe44b1a6909e7859 | |
parent | 51031bf32cb2dc1772ae7730c0245112da430951 (diff) | |
download | haskell-acc388da8a787889597f34ccd704e24234763015.tar.gz |
Fix unregisterised bindists
-rw-r--r-- | ghc.mk | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -468,11 +468,15 @@ BUILD_DIRS += \ gmp \ docs/users_guide \ libraries/Cabal/doc \ - $(GHC_MANGLER_DIR) \ - $(GHC_SPLIT_DIR) \ $(GHC_UNLIT_DIR) \ $(GHC_HP2PS_DIR) +ifneq "$(GhcUnregisterised)" "YES" +BUILD_DIRS += \ + $(GHC_MANGLER_DIR) \ + $(GHC_SPLIT_DIR) +endif + ifneq "$(BINDIST)" "YES" BUILD_DIRS += \ $(GHC_GENPRIMOP_DIR) |