talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 56604ac29eba4a357aeefe73a4b28f49d06edfa9
parent e0981338ea10b5216764d66663298026fa30cab8
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:
Mautogen.sh | 8++++----
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