7d63ac0258
- Use integer-gmp again. - Cleanout the extracted bootstrap directory right after installing it to save some disk space. - Use ${MAKE_ENV} instead ${MODGHC_SETUP_CONF_ENV} in ghc.port.mk (in do-configure, use both). - Don't compile Setup.l?hs, just use the interpreter (runghc) in ghc.port.mk. This speeds up the build of most ports depending on ghc and using a cabal-style build. Necessary bumps and WANTLIB changes in ports using ghc will follow later this evening.
18 lines
613 B
Plaintext
18 lines
613 B
Plaintext
$OpenBSD: patch-ghc_mk,v 1.2 2010/06/15 15:34:03 kili Exp $
|
|
|
|
I don't see the point in not installing libraries that are required
|
|
by the build (and by several external haskell libraries we have or
|
|
will have in the ports tree).
|
|
|
|
--- ghc.mk.orig Tue May 25 20:10:08 2010
|
|
+++ ghc.mk Wed May 26 20:30:13 2010
|
|
@@ -844,7 +844,7 @@ INSTALLED_GHC_REAL=$(DESTDIR)$(bindir)/ghc.exe
|
|
INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(bindir)/ghc-pkg.exe
|
|
endif
|
|
|
|
-INSTALLED_PACKAGES = $(filter-out haskeline mtl terminfo utf8-string,$(PACKAGES))
|
|
+INSTALLED_PACKAGES = $(PACKAGES)
|
|
HIDDEN_PACKAGES = ghc-binary
|
|
|
|
define set_INSTALL_DISTDIR
|