From: simonmar Date: Wed, 16 Mar 2005 10:24:47 +0000 (+0000) Subject: [project @ 2005-03-16 10:24:47 by simonmar] X-Git-Tag: Initial_conversion_from_CVS_complete~901 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=0e3103410ec8b93bfa89410242b55e4c066c6629;p=ghc-hetmet.git [project @ 2005-03-16 10:24:47 by simonmar] Further to previous patch: only create the user database if we're modifying --- diff --git a/ghc/utils/ghc-pkg/Main.hs b/ghc/utils/ghc-pkg/Main.hs index 42753db..0656399 100644 --- a/ghc/utils/ghc-pkg/Main.hs +++ b/ghc/utils/ghc-pkg/Main.hs @@ -285,13 +285,15 @@ getPkgDatabases modify flags = do -- --user means overlap with the user database -- --global means reset to just the global database -- -f means overlap with - addDB dbs FlagUser = if user_conf `elem` dbs - then dbs - else user_conf : dbs + addDB dbs FlagUser + | user_conf `elem` dbs = dbs + | modify || user_exists = user_conf : dbs addDB dbs FlagGlobal = [global_conf] addDB dbs (FlagConfig f) = f : dbs addDB dbs _ = dbs + -- we create the user database iff (a) we're modifying, and (b) the + -- user asked to use it by giving the --user flag. when (not user_exists && user_conf `elem` databases) $ do putStrLn ("Creating user package database in " ++ user_conf) createDirectoryIfMissing True archdir