We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc3ccda + 505f875 commit c7abe0aCopy full SHA for c7abe0a
Cabal/src/Distribution/Simple/GHC/Build/Link.hs
@@ -735,7 +735,9 @@ runReplOrWriteFlags ghcProg lbi rflags ghcOpts pkg_name target =
735
Flag out_dir -> do
736
let uid = componentUnitId clbi
737
this_unit = prettyShow uid
738
- reexported_modules = [mn | LibComponentLocalBuildInfo{} <- [clbi], IPI.ExposedModule mn (Just{}) <- componentExposedModules clbi]
+ reexported_modules =
739
+ [ mn | LibComponentLocalBuildInfo{componentExposedModules = exposed_mods} <- [clbi], IPI.ExposedModule mn (Just{}) <- exposed_mods
740
+ ]
741
hidden_modules = otherModules bi
742
extra_opts =
743
concat $
0 commit comments