diff options
author | Ian Lynagh <igloo@earth.li> | 2009-05-08 22:48:57 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-05-08 22:48:57 +0000 |
commit | 637e621af0214877c98cb3ca5ae4dca5f737c316 (patch) | |
tree | 1c0c8edabb61a77dfdb4bc1a65ec4bcb7e8d33af /distrib | |
parent | 1cce2f51656cfbd8c7933a914a4bd981792aa1e6 (diff) | |
download | haskell-637e621af0214877c98cb3ca5ae4dca5f737c316.tar.gz |
Partially fix "make framework-pkg"
We still need to sort out the "install-docs" story to get this working
properly.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/MacOS/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/distrib/MacOS/Makefile b/distrib/MacOS/Makefile index d17e384d73..3d7852e7d4 100644 --- a/distrib/MacOS/Makefile +++ b/distrib/MacOS/Makefile @@ -20,8 +20,13 @@ # ############################################################################ -TOP=../.. -include $(TOP)/mk/boilerplate.mk +include ../../mk/config.mk + +ifeq "$(ProjectVersion)" "" +$(error Please run ./configure first) +endif + +include ../../mk/custom-settings.mk # The ProjectVersionInt is GHC's idea of an API version and hence determines # the framework version. |