diff options
author | Ben Gamari <ben@smart-cactus.org> | 2016-05-01 18:05:28 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-05-01 23:29:49 +0200 |
commit | ecc060302b13d5a6ffb0fdfb0625b90f2fbfca0f (patch) | |
tree | 22ed6d0f52ff19c7a44ef16af02e73f2a4974664 /utils/deriveConstants | |
parent | 116193225465186ceb8471a007eff15692af903a (diff) | |
download | haskell-ecc060302b13d5a6ffb0fdfb0625b90f2fbfca0f.tar.gz |
deriveConstants: Fix nm advice one last time
Missing a close paren.
Diffstat (limited to 'utils/deriveConstants')
-rw-r--r-- | utils/deriveConstants/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/deriveConstants/Main.hs b/utils/deriveConstants/Main.hs index 6cd48d4564..1878fd9daf 100644 --- a/utils/deriveConstants/Main.hs +++ b/utils/deriveConstants/Main.hs @@ -693,7 +693,7 @@ getWanted verbose os tmpdir gccProgram gccFlags nmProgram mobjdumpProgram Just 0x292 -> die $ "broken 'nm' detected, see https://ghc.haskell.org/ticket/11744.\n" ++ "\n" ++ "Workaround: You may want to pass\n" - ++ " --with-nm=$(xcrun --find nm-classic\n" + ++ " --with-nm=$(xcrun --find nm-classic)\n" ++ "to 'configure'.\n" Just x -> die ("unexpected value round-tripped for CONTROL_GROUP_CONST_291: " ++ show x) |