commit 23b3f6398dd2e255b0507baab4a23b9914c661d7
parent f6a95827052a4f1e6492509b2b103c877247bc38
Author: Paul <paul@claws-mail.org>
Date: Tue, 6 Nov 2018 06:14:37 +0000
fix bug 4115 'autogen: avoid unwarranted re-configure'
patch by Bernhard <rep.dot.nop@gmail.com>
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git 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