[applied] configure.ac: Fix typo triggered when --enable-big-tests is used

Message ID 87bk23s4cd.fsf@redhat.com
State New
Headers
Series [applied] configure.ac: Fix typo triggered when --enable-big-tests is used |

Commit Message

Dodji Seketeli Aug. 8, 2024, 10:20 a.m. UTC
  Hello,

This is a trivial one.

	* configure.ac: It's "cd $ac_abs_top_srcdir/big-tests", not
	"cd ac_abs_top_srcdir/big-tests"

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

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