Skip to content

Commit

Permalink
Fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
mpickering committed May 23, 2024
1 parent 0acda87 commit a96d01f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Types/LocalBuildInfo.hs
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ buildWays lbi =
case (is_dyn_flib, withDynExe lbi, withProfExe lbi) of
(True, True, True) -> ProfDynWay
(_ , _ , True) -> ProfWay
(True, True, False) -> DynWay
(True, _ , False) -> DynWay
(_ , _ , _ ) -> StaticWay

wantedExeWay =
Expand Down

0 comments on commit a96d01f

Please sign in to comment.