run aclocal first, then libtoolize
This commit is contained in:
parent
001ad0c2bc
commit
ef121c3509
|
|
@ -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 ,
|
||||
|
|
|
|||
|
|
@ -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…
Reference in New Issue