summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2009-05-07 13:50:34 +0000
committerIan Lynagh <igloo@earth.li>2009-05-07 13:50:34 +0000
commit36091517e6b1d87b8dacd5168fcc464ac75f65bd (patch)
tree4f1cb4d37de6523ea2f0322462d30b46551137b2 /utils
parented4beb8bc5e49d84e38b047c2dfc14eb22c74607 (diff)
downloadhaskell-36091517e6b1d87b8dacd5168fcc464ac75f65bd.tar.gz
Rename pwd to ghc-pwd
Diffstat (limited to 'utils')
-rw-r--r--utils/ghc-pwd/Setup.hs (renamed from utils/pwd/Setup.hs)0
-rw-r--r--utils/ghc-pwd/ghc-pwd.cabal (renamed from utils/pwd/pwd.cabal)6
-rw-r--r--utils/ghc-pwd/ghc-pwd.hs (renamed from utils/pwd/pwd.hs)2
3 files changed, 4 insertions, 4 deletions
diff --git a/utils/pwd/Setup.hs b/utils/ghc-pwd/Setup.hs
index 9a994af677..9a994af677 100644
--- a/utils/pwd/Setup.hs
+++ b/utils/ghc-pwd/Setup.hs
diff --git a/utils/pwd/pwd.cabal b/utils/ghc-pwd/ghc-pwd.cabal
index cff48f8a36..173b3cc1ee 100644
--- a/utils/pwd/pwd.cabal
+++ b/utils/ghc-pwd/ghc-pwd.cabal
@@ -1,4 +1,4 @@
-Name: pwd
+Name: ghc-pwd
Version: 0.1
Copyright: XXX
License: BSD
@@ -14,8 +14,8 @@ cabal-version: >=1.2
Flag base3
Description: Choose the new smaller, split-up base package.
-Executable pwd
- Main-Is: pwd.hs
+Executable ghc-pwd
+ Main-Is: ghc-pwd.hs
if flag(base3)
Build-Depends: base >= 3 && < 5,
directory >= 1 && < 1.1
diff --git a/utils/pwd/pwd.hs b/utils/ghc-pwd/ghc-pwd.hs
index 694941643d..91a5606ac3 100644
--- a/utils/pwd/pwd.hs
+++ b/utils/ghc-pwd/ghc-pwd.hs
@@ -13,7 +13,7 @@ main = do
[] -> do d <- getCurrentDirectory
putStr $ map forwardifySlashes d
_ -> do hPutStrLn stderr ("Bad args: " ++ show args)
- hPutStrLn stderr "Usage: pwd"
+ hPutStrLn stderr "Usage: ghc-pwd"
exitFailure
forwardifySlashes :: Char -> Char