From d8441af5a27492a0246743683f9694a700648b84 Mon Sep 17 00:00:00 2001 From: Dodji Seketeli Date: Wed, 7 Aug 2024 18:37:11 +0200 Subject: [PATCH] configure.ac: Fix typo triggered when --enable-big-tests is used * configure.ac: It's "cd $ac_abs_top_srcdir/big-tests", not "cd ac_abs_top_srcdir/big-tests" Signed-off-by: Dodji Seketeli --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9c8e5511..65d43f13 100644 --- a/configure.ac +++ b/configure.ac @@ -470,7 +470,7 @@ if test x$ENABLE_BIG_TESTS = xyes; then if test -d $srcdir/big-tests -o -L $srcdir/big-tests; then AC_CONFIG_COMMANDS([create-big-tests-build-dir-and-configure], [AC_MSG_NOTICE([Found $srcdir/big-tests!]) - cd ac_abs_top_srcdir/big-tests + cd $ac_abs_top_srcdir/big-tests autoreconf -i cd $ac_abs_top_builddir test -d big-tests || mkdir big-tests -- 2.43.5