From caf315dc636adc3bc38fb57e854d043909bab3ba Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sun, 18 Feb 2018 20:12:43 +0100 Subject: [PATCH] AX_SUBMODULE: fix typo in test invocation The typo was introduced in barvinok-0.40-13-g3f17e4d8db (AX_SUBMODULE: only check submodule status in git repository, Fri Jun 2 11:32:40 2017 +0200). Signed-off-by: Sven Verdoolaege --- m4/ax_submodule.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/ax_submodule.m4 b/m4/ax_submodule.m4 index 1f00f6f..2874156 100644 --- a/m4/ax_submodule.m4 +++ b/m4/ax_submodule.m4 @@ -45,7 +45,7 @@ $3) case "$4" in bundled) if test -d $srcdir/.git -a \ - -d $srcdir/$1 -a; then if \ + -d $srcdir/$1; then if \ "`cd $srcdir; git submodule status $1 | cut -c1`" = '-'; then AC_MSG_WARN([git repo detected, but submodule $1 not initialized]) AC_MSG_WARN([You may want to run]) -- 2.11.4.GIT