summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim King <tim.king@imag.fr>2015-01-16 11:31:33 +0100
committerTim King <tim.king@imag.fr>2015-01-19 13:07:34 +0100
commitdc38452fb64b58c96c73b8bcab7d89fc86b0ecdd (patch)
tree8cd34b3075c3112fde97b09c6a311bab48dd970b
parentb1e7a911b20df1537dbd4226ab0c90fbed686f0c (diff)
Adding an additional search path to configure.ac for cxxtestgen to reflect the cxxtest git repository.
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index d83293079..672b70d6d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -902,6 +902,11 @@ fi
if test -z "$CXXTESTGEN"; then
AC_PATH_PROG(CXXTESTGEN, cxxtestgen, [], [$CXXTEST:$PATH])
fi
+# The latest version of cxxtest distributed from the git repository places
+# cxxtest under <cxxtest-root>/bin/cxxtest
+if test -z "$CXXTESTGEN"; then
+ AC_PATH_PROG(CXXTESTGEN, cxxtestgen, [], [$CXXTEST/bin:$PATH])
+fi
if test "$enable_unit_testing" = "no"; then
AC_MSG_NOTICE([unit tests disabled by user request.])
CXXTESTGEN=
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback