From 3ae432721d71d208f1021bf3cf0b21ae405cadd8 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 18 Aug 2010 18:58:01 +0000 Subject: [PATCH] Add _DATA_FILES to package-data.mk files --- utils/ghc-cabal/ghc-cabal.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/ghc-cabal/ghc-cabal.hs b/utils/ghc-cabal/ghc-cabal.hs index 489be4a..25c94a1 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 -- 1.7.10.4