diff options
author | Ian Lynagh <igloo@earth.li> | 2011-01-27 00:17:39 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-01-27 00:17:39 +0000 |
commit | c1e824a275339da8fae6614f5a0db751874d0a36 (patch) | |
tree | d0ef3aa81de615dc808dd1cf2bf2450269a0798b /rules/build-package-data.mk | |
parent | ff3bfae6010625b7ffe96bc62e8e139870684600 (diff) | |
download | haskell-c1e824a275339da8fae6614f5a0db751874d0a36.tar.gz |
Fix "make 1" etc following the build system changes
The logic is now in mk/compiler-ghc.mk rather than being duplicated in
ghc/Makefile and compiler/Makefile.
Diffstat (limited to 'rules/build-package-data.mk')
-rw-r--r-- | rules/build-package-data.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rules/build-package-data.mk b/rules/build-package-data.mk index dcffee6110..86f9323859 100644 --- a/rules/build-package-data.mk +++ b/rules/build-package-data.mk @@ -64,6 +64,7 @@ $1_$2_CONFIGURE_OPTS += $$(BOOT_PKG_CONSTRAINTS) endif ifneq "$$(BINDIST)" "YES" +ifneq "$$(NO_GENERATED_MAKEFILE_RULES)" "YES" $1/$2/inplace-pkg-config : $1/$2/package-data.mk $1/$2/build/autogen/cabal_macros.h : $1/$2/package-data.mk @@ -78,6 +79,7 @@ ifneq "$$($1_$2_REGISTER_PACKAGE)" "NO" endif endif endif +endif PACKAGE_DATA_MKS += $1/$2/package-data.mk |