diff options
author | Ian Lynagh <igloo@earth.li> | 2010-08-18 18:58:01 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-08-18 18:58:01 +0000 |
commit | 3ae432721d71d208f1021bf3cf0b21ae405cadd8 (patch) | |
tree | 5ef6673d53cd7a8dcba65eb5d8514325ec476545 /utils | |
parent | db286afd553884c362399042d00ee08656adafce (diff) | |
download | haskell-3ae432721d71d208f1021bf3cf0b21ae405cadd8.tar.gz |
Add _DATA_FILES to package-data.mk files
Diffstat (limited to 'utils')
-rw-r--r-- | utils/ghc-cabal/ghc-cabal.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/ghc-cabal/ghc-cabal.hs b/utils/ghc-cabal/ghc-cabal.hs index 489be4ad29..25c94a1f80 100644 --- a/utils/ghc-cabal/ghc-cabal.hs +++ b/utils/ghc-cabal/ghc-cabal.hs @@ -348,6 +348,7 @@ generate config_args distdir directory variablePrefix ++ "_EXTRA_LIBDIRS = " ++ unwords (extraLibDirs bi), variablePrefix ++ "_C_SRCS = " ++ unwords (cSources bi), variablePrefix ++ "_CMM_SRCS = $(addprefix cbits/,$(notdir $(wildcard " ++ directory ++ "/cbits/*.cmm)))", + variablePrefix ++ "_DATA_FILES = " ++ unwords (dataFiles pd), -- XXX This includes things it shouldn't, like: -- -odir dist-bootstrapping/build variablePrefix ++ "_HC_OPTS = " ++ escape (unwords |