From 56604ac29eba4a357aeefe73a4b28f49d06edfa9 Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 6 Nov 2018 06:14:37 +0000 Subject: [PATCH] fix bug 4115 'autogen: avoid unwarranted re-configure' patch by Bernhard --- autogen.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autogen.sh b/autogen.sh index f2f62c93d..48609ce63 100755 --- a/autogen.sh +++ b/autogen.sh @@ -49,11 +49,11 @@ case `uname` in ;; esac -aclocal -I m4 \ - && ${LIBTOOL} \ +${LIBTOOL} \ + && aclocal -I m4 \ + && autoconf \ && autoheader \ - && automake --add-missing --foreign --copy \ - && autoconf + && automake --add-missing --foreign --copy if test -z "$NOCONFIGURE"; then exec ./configure --enable-maintainer-mode $@ fi -- 2.11.4.GIT