summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-02-27 16:33:20 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-02-27 16:33:20 -0400
commit4ddc8566b0146fc70c0fac8f7451c35cbd2f1a7b (patch)
treeec5b935a889ab66b35604cd1007084f559573409
parent5f411d144c343924849c93b203b393a33e395ce9 (diff)
typo
-rw-r--r--GitAnnex.hs4
-rw-r--r--git-annex.hs4
2 files changed, 4 insertions, 4 deletions
diff --git a/GitAnnex.hs b/GitAnnex.hs
index 17bd75987..0b4a7f8d9 100644
--- a/GitAnnex.hs
+++ b/GitAnnex.hs
@@ -77,7 +77,7 @@ import qualified Command.WebApp
import qualified Command.XMPPGit
#endif
#endif
-#ifdef WITH_TESTUITE
+#ifdef WITH_TESTSUITE
import qualified Command.Test
#endif
@@ -138,7 +138,7 @@ cmds = concat
, Command.XMPPGit.def
#endif
#endif
-#ifdef WITH_TESTUITE
+#ifdef WITH_TESTSUITE
, Command.Test.def
#endif
]
diff --git a/git-annex.hs b/git-annex.hs
index a2ddb0032..0f45f53eb 100644
--- a/git-annex.hs
+++ b/git-annex.hs
@@ -12,7 +12,7 @@ import System.FilePath
import qualified GitAnnex
import qualified GitAnnexShell
-#ifdef WITH_TESTUITE
+#ifdef WITH_TESTSUITE
import qualified Test
#endif
@@ -25,7 +25,7 @@ main = run =<< getProgName
isshell n = takeFileName n == "git-annex-shell"
go a = do
ps <- getArgs
-#ifdef WITH_TESTUITE
+#ifdef WITH_TESTSUITE
if ps == ["test"]
then Test.main
else a ps