From af2db7a6510a571f9131a9143415496addcc6861 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Thu, 18 Jul 2013 12:01:18 +0200 Subject: [PATCH] autoconf: replace autogen.sh custom script with a call to autoreconf -i --- autogen.sh | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/autogen.sh b/autogen.sh index 5aae43676..7c590a31e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,20 +1,3 @@ #!/bin/sh -LIBTOOLIZE=`which glibtoolize 2>/dev/null` -case "$LIBTOOLIZE" in - /* ) ;; - * ) LIBTOOLIZE=`which libtoolize 2>/dev/null` - case "$LIBTOOLIZE" in - /* ) ;; - * ) LIBTOOLIZE=libtoolize - ;; - esac - ;; -esac - -$LIBTOOLIZE --force && -aclocal && -autoheader && -automake -a && -autoconf - +autoreconf -i