diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/ghc-cabal/Main.hs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/utils/ghc-cabal/Main.hs b/utils/ghc-cabal/Main.hs index 6302349a2a..77caf5819e 100644 --- a/utils/ghc-cabal/Main.hs +++ b/utils/ghc-cabal/Main.hs @@ -411,10 +411,6 @@ generate directory distdir dll0Modules config_args transitive_dep_ids = map Installed.sourcePackageId dep_pkgs transitiveDeps = map display transitive_dep_ids - transitiveDepKeys - | packageKeySupported comp - = map (display . Installed.packageKey) dep_pkgs - | otherwise = transitiveDeps transitiveDepLibNames | packageKeySupported comp = map (\p -> packageKeyLibraryName @@ -451,7 +447,6 @@ generate directory distdir dll0Modules config_args variablePrefix ++ "_DEP_IPIDS = " ++ unwords dep_ipids, variablePrefix ++ "_DEP_NAMES = " ++ unwords depNames, variablePrefix ++ "_TRANSITIVE_DEPS = " ++ unwords transitiveDeps, - variablePrefix ++ "_TRANSITIVE_DEP_KEYS = " ++ unwords transitiveDepKeys, variablePrefix ++ "_TRANSITIVE_DEP_LIB_NAMES = " ++ unwords transitiveDepLibNames, variablePrefix ++ "_TRANSITIVE_DEP_NAMES = " ++ unwords transitiveDepNames, variablePrefix ++ "_INCLUDE_DIRS = " ++ unwords (includeDirs bi), |