diff options
author | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2008-02-02 13:48:53 +0000 |
---|---|---|
committer | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2008-02-02 13:48:53 +0000 |
commit | c222ce6d2dcde7dcef36d95fc225fd65d56bdb63 (patch) | |
tree | 0ac88fe88507f94689997a51b2894bcdfbe99b56 /mk | |
parent | 937eb1f1386f12c729c6d819417fe81bc4786b9f (diff) | |
download | haskell-c222ce6d2dcde7dcef36d95fc225fd65d56bdb63.tar.gz |
First stab at an installer package for the Mac
- GHC as a Mac framework
- I tried to make a package where the user could choose whether to install
in /Library/Frameworks or ~/Library/Frameworks (to allow installation for
non-admins). However, that doesn't work well without including the whole
distribution twice as the decision as to whether the admin password needs
to be entered is made at packaging time (not at install time).
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index f27a4b1c9b..fc26319e81 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -507,10 +507,9 @@ endif FPTOOLS_TOP_ABS = @hardtop@ BIN_DIST_NAME=ghc-$(ProjectVersion) -BIN_DIST_TOPDIR_REL=$(FPTOOLS_TOP) BIN_DIST_TOPDIR_ABS=$(FPTOOLS_TOP_ABS) BIN_DIST_DIR=$(BIN_DIST_TOPDIR_ABS)/$(BIN_DIST_NAME) -BIN_DIST_TARBALL=$(BIN_DIST_TOPDIR_REL)/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar.bz2 +BIN_DIST_TARBALL=$(FPTOOLS_TOP_ABS)/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar.bz2 # Definition of installation directories, we don't use half of these, but since # the configure script has them on offer while passing through, we might as well |