cvs commit: fptools/ghc/utils/ghc-pkg Main.hs
Sven Panne
panne at glass.cse.ogi.edu
Sun Jan 11 06:43:19 EST 2004
panne 2004/01/11 06:43:19 PST
Modified files:
ghc/utils/ghc-pkg Main.hs
Log:
Fixed the previous commit: All lists of Strings in package configuration files
were split at commas to allow list-based variables, but this broke perfectly
sensible things like
["-Wl,-rpath,/usr/lib/jvm-bridge/lib/"]
into
["-Wl","-rpath","/usr/lib/jvm-bridge/lib/"]
which is plainly wrong. Now we do this *only* when a variable occurs on its own,
like:
["${deps}","foo"] => ["base","haskell98","network","foo"]
I have slight doubts about this obscure feature, but Sigbjorn seems to want
it...
Merge to STABLE
Revision Changes Path
1.39 +43 -23 fptools/ghc/utils/ghc-pkg/Main.hs
More information about the Cvs-ghc
mailing list