diff options
author | Ben Gamari <ben@smart-cactus.org> | 2015-12-24 13:39:28 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2015-12-24 13:39:28 +0100 |
commit | 3017cbcfd10fe0a364cc8b039c07a94c3b9e61cc (patch) | |
tree | 2aa2b27ab5ed5aba566179de609b77dbd1cb6068 /utils | |
parent | 353e97a37da98ccd174429fad348efbf01ace96c (diff) | |
download | haskell-3017cbcfd10fe0a364cc8b039c07a94c3b9e61cc.tar.gz |
ghc-cabal: Bring back TRANSITIVE_DEP_NAMES
This is still needed by the Shake build system until things have been
reworked to use Cabal directly.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/ghc-cabal/Main.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/ghc-cabal/Main.hs b/utils/ghc-cabal/Main.hs index 66ebd14a94..680c573107 100644 --- a/utils/ghc-cabal/Main.hs +++ b/utils/ghc-cabal/Main.hs @@ -415,6 +415,7 @@ generate directory distdir dll0Modules config_args variablePrefix ++ "_DEP_IPIDS = " ++ unwords dep_ipids, variablePrefix ++ "_DEP_NAMES = " ++ unwords depNames, variablePrefix ++ "_DEP_COMPONENT_IDS = " ++ unwords depLibNames, + variablePrefix ++ "_TRANSITIVE_DEP_NAMES = " ++ unwords transitiveDepNames, variablePrefix ++ "_TRANSITIVE_DEP_COMPONENT_IDS = " ++ unwords transitiveDepLibNames, variablePrefix ++ "_INCLUDE_DIRS = " ++ unwords (includeDirs bi), variablePrefix ++ "_INCLUDES = " ++ unwords (includes bi), |