Browse Source

run aclocal first, then libtoolize

pre-master-46
rlar 16 years ago
parent
commit
ef121c3509
  1. 4
      ChangeLog
  2. 8
      autogen.sh

4
ChangeLog

@ -1,3 +1,7 @@
2010-09-17 Robert Larice
* autogen.sh :
run aclocal first, then libtoolize
2010-09-17 Robert Larice
* Makefile.am ,
* src/include/Makefile.am ,

8
autogen.sh

@ -189,14 +189,14 @@ check_awk
fi
echo "Running libtoolize"
libtoolize --copy --force
if [ $? -ne 0 ];then echo "libtoolize failed"; end_on_error ; fi
echo "Running aclocal $ACLOCAL_FLAGS"
aclocal $ACLOCAL_FLAGS
if [ $? -ne 0 ]; then echo "aclocal failed"; end_on_error ; fi
echo "Running libtoolize"
libtoolize --copy --force
if [ $? -ne 0 ];then echo "libtoolize failed"; end_on_error ; fi
# optional feature: autoheader
(autoheader --version) < /dev/null > /dev/null 2>&1
if [ $? -eq 0 ]; then

Loading…
Cancel
Save