From 756a6277ffd1d8681453aeeb2140b4e35816b8a0 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 23 Aug 2014 18:46:08 -0700 Subject: [PATCH] Fix stub git-annex test support when built without tasty. --- CmdLine/GitAnnex.hs | 4 ++-- debian/changelog | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CmdLine/GitAnnex.hs b/CmdLine/GitAnnex.hs index 80a784dd77..d27866030f 100644 --- a/CmdLine/GitAnnex.hs +++ b/CmdLine/GitAnnex.hs @@ -96,8 +96,8 @@ import qualified Command.XMPPGit #endif import qualified Command.RemoteDaemon #endif -#ifdef WITH_TESTSUITE import qualified Command.Test +#ifdef WITH_TESTSUITE import qualified Command.FuzzTest import qualified Command.TestRemote #endif @@ -188,8 +188,8 @@ cmds = concat #endif , Command.RemoteDaemon.def #endif -#ifdef WITH_TESTSUITE , Command.Test.def +#ifdef WITH_TESTSUITE , Command.FuzzTest.def , Command.TestRemote.def #endif diff --git a/debian/changelog b/debian/changelog index a0edeb0ee1..de260e9e5f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ git-annex (5.20140818) UNRELEASED; urgency=medium afterwards, to ensure that remotes on removable media can be unmounted. Closes: #758630 * Fix handing of autocorrection when running outside a git repository. + * Fix stub git-annex test support when built without tasty. -- Joey Hess Tue, 19 Aug 2014 12:52:41 -0400