From: Duncan Coutts Date: Tue, 19 May 2009 12:09:53 +0000 (+0000) Subject: Pass --enable-shared and --with-hscolour to ghc-cabal configure X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=4e340bbb54087a3a5b12afc6e2ad3664ec4beed3 Pass --enable-shared and --with-hscolour to ghc-cabal configure It tried to do this already, but the make variable name was wrong. --- diff --git a/rules/build-package-data.mk b/rules/build-package-data.mk index 53621ed..38a9620 100644 --- a/rules/build-package-data.mk +++ b/rules/build-package-data.mk @@ -13,11 +13,11 @@ define build-package-data # args: $1 = dir, $2 = distdir ifeq "$(BuildSharedLibs)" "YES" -$1_$2_CONFIGURE_FLAGS += --enable-shared +$1_$2_CONFIGURE_OPTS += --enable-shared endif ifeq "$(HSCOLOUR_SRCS)" "YES" -$1_$2_CONFIGURE_FLAGS += --with-hscolour="$$(HSCOLOUR)" +$1_$2_CONFIGURE_OPTS += --with-hscolour="$$(HSCOLOUR)" endif # This rule configures the package, generates the package-data.mk file