Skip to content

Commit

Permalink
Fix processing of ghc-shared-options
Browse files Browse the repository at this point in the history
Original patch was:
  Sun Oct  7 13:41:53 BST 2007  Thorkil Naur <naur@post11.tele.dk>
    * Fix processing of shared options
Re-recorded due to code churn
  • Loading branch information
dcoutts committed Oct 9, 2010
1 parent 5085190 commit b919788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Distribution/PackageDescription/Parse.hs
Expand Up @@ -357,7 +357,7 @@ binfoFieldDescrs =
ghcProfOptions (\val binfo -> binfo{ghcProfOptions=val})
, listField "ghc-shared-options"
text parseTokenQ
ghcProfOptions (\val binfo -> binfo{ghcSharedOptions=val})
ghcSharedOptions (\val binfo -> binfo{ghcSharedOptions=val})
, optsField "ghc-options" GHC
options (\path binfo -> binfo{options=path})
, optsField "hugs-options" Hugs
Expand Down

0 comments on commit b919788

Please sign in to comment.