Skip to content

Commit

Permalink
Merge pull request #10450 from haskell/mergify/bp/3.14/pr-10403
Browse files Browse the repository at this point in the history
avoid incomplete record selection warning (backport #10403)
  • Loading branch information
mergify[bot] authored Nov 7, 2024
2 parents cc3ccda + 505f875 commit c7abe0a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Cabal/src/Distribution/Simple/GHC/Build/Link.hs
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,9 @@ runReplOrWriteFlags ghcProg lbi rflags ghcOpts pkg_name target =
Flag out_dir -> do
let uid = componentUnitId clbi
this_unit = prettyShow uid
reexported_modules = [mn | LibComponentLocalBuildInfo{} <- [clbi], IPI.ExposedModule mn (Just{}) <- componentExposedModules clbi]
reexported_modules =
[ mn | LibComponentLocalBuildInfo{componentExposedModules = exposed_mods} <- [clbi], IPI.ExposedModule mn (Just{}) <- exposed_mods
]
hidden_modules = otherModules bi
extra_opts =
concat $
Expand Down

0 comments on commit c7abe0a

Please sign in to comment.