autoconf: replace autogen.sh custom script with a call to autoreconf -i

This commit is contained in:
Martin Willi 2013-07-18 12:01:18 +02:00
parent 19cb07b890
commit af2db7a651
1 changed files with 1 additions and 18 deletions

View File

@ -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