From 481ddaf4175f80aa70a29f80c80be9721dab0fc9 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Sat, 22 Sep 2012 14:31:55 +0200 Subject: [PATCH] Find test case files in out-of-source-dir builds as well --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3c546929d..b9c0ba70a 100644 --- a/configure.ac +++ b/configure.ac @@ -156,7 +156,7 @@ elif test ! -f $srcdir/version.c; then fi dnl Find test suite files. -test_suites=`ls test/test_*.c | grep -Ev 'BASE|BACKUP|LOCAL|REMOTE' | xargs echo` +test_suites=`ls $srcdir/test/test_*.c | egrep -v 'BASE|BACKUP|LOCAL|REMOTE' | xargs echo` AC_CONFIG_FILES([Makefile]) AC_OUTPUT -- 2.47.2