From 47a4843941c5d72ff327417376bb1efca8825a49 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 27 Feb 2013 16:33:20 -0400 Subject: [PATCH] typo --- GitAnnex.hs | 4 ++-- git-annex.hs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/GitAnnex.hs b/GitAnnex.hs index 17bd759873..0b4a7f8d9e 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 a2ddb00325..0f45f53ebc 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