diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-09-27 04:40:36 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-09-27 04:40:36 +0000 |
commit | cfafa2dd72317fe7d596bd4cd7ba11fc0cbbb253 (patch) | |
tree | c1d108285e6f8207ddad6d29169e47563153fd2e /autogen.sh | |
parent | a9230c1de31b6f99e49203ec6e294dd51c457cbb (diff) | |
download | efl-cfafa2dd72317fe7d596bd4cd7ba11fc0cbbb253.tar.gz |
merge: use autoreconf
raster, please: be constructive: if it does not work for you, what about giving the error ?
SVN revision: 77125
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh index eec465e00b..63a53837ee 100755 --- a/autogen.sh +++ b/autogen.sh @@ -3,11 +3,7 @@ rm -rf autom4te.cache rm -f aclocal.m4 ltmain.sh -echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1 -echo "Running autoheader..." ; autoheader || exit 1 -echo "Running autoconf..." ; autoconf || exit 1 -echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1 -echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1 +autoreconf -vif if [ -z "$NOCONFIGURE" ]; then ./configure -C "$@" |