Skip to content

Commit 416d9e3

Browse files
committed
Show the number, change the wording
1 parent b39f3ba commit 416d9e3

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

Cabal/src/Distribution/Simple/Configure.hs

+13-4
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ import Text.PrettyPrint
176176
, char
177177
, colon
178178
, hsep
179+
, int
179180
, nest
181+
, parens
180182
, quotes
181183
, renderStyle
182184
, text
@@ -898,10 +900,11 @@ configurePackage cfg lbc0 pkg_descr00 flags enabled comp platform programDb0 pac
898900
(merged, ds@(dup : _)) ->
899901
noticeDoc verbosity $
900902
vcat
901-
[ (text "The build tool" <+> quotes (text $ nameOf dup) <+> "has multiple versions specified") <> colon
902-
, nest 2 $ vcat [char '-' <+> text (prettyShow $ versionOf d) | d <- ds]
903-
, text "These versions have been combined as" <> colon
904-
, nest 2 $ quotes (text $ prettyShow merged)
903+
[ (text "As the build tool" <+> quotes (text $ nameOf dup) <+> "was specified more than once") <> colon
904+
, nest 2 $ vcat [char '-' <+> versionOfDoc d | d <- ds]
905+
, (text "We'll use the effective intersection of these" <+> int (length ds) <+> "version ranges") <> colon
906+
, nest 2 $ char '-' <+> versionOfDoc merged
907+
, text "Please specify build tool dependencies only once."
905908
]
906909

907910
programDb1 <-
@@ -959,6 +962,12 @@ nameOf (LegacyExeDependency n _) = n
959962
versionOf :: LegacyExeDependency -> VersionRange
960963
versionOf (LegacyExeDependency _ v) = v
961964

965+
versionOfDoc :: LegacyExeDependency -> Doc
966+
versionOfDoc (LegacyExeDependency _ v) =
967+
if v == anyVersion
968+
then text (prettyShow v) <+> parens (text "any version")
969+
else text $ prettyShow v
970+
962971
-- | Any duplicates in the list has their version range merged by intersection.
963972
-- The second list has the build tool with its merged version range and its list
964973
-- of duplicates.

0 commit comments

Comments
 (0)