Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/f0ac082a8f7dd1a3968cad726b7a1dcedb14f42f >--------------------------------------------------------------- commit f0ac082a8f7dd1a3968cad726b7a1dcedb14f42f Author: Simon Marlow <[email protected]> Date: Mon Jul 2 13:16:13 2012 +0100 improve the --help docs a bit (#7008) >--------------------------------------------------------------- utils/ghc-pkg/Main.hs | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/utils/ghc-pkg/Main.hs b/utils/ghc-pkg/Main.hs index 3389c07..ddc4821 100644 --- a/utils/ghc-pkg/Main.hs +++ b/utils/ghc-pkg/Main.hs @@ -129,10 +129,12 @@ flags = [ "use the current user's package database", Option [] ["global"] (NoArg FlagGlobal) "use the global package database", - Option ['f'] ["package-db", "package-conf"] (ReqArg FlagConfig "FILE") - "use the specified package config file", - Option [] ["global-package-db"] (ReqArg FlagGlobalConfig "FILE") - "location of the global package config", + Option ['f'] ["package-db"] (ReqArg FlagConfig "FILE/DIR") + "use the specified package database", + Option [] ["package-conf"] (ReqArg FlagConfig "FILE/DIR") + "use the specified package database (DEPRECATED)", + Option [] ["global-package-db"] (ReqArg FlagGlobalConfig "DIR") + "location of the global package database", Option [] ["no-user-package-db"] (NoArg FlagNoUserDb) "never read the user package database", Option [] ["force"] (NoArg FlagForce) _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
