add libtoolize to bootstrap
git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@107 53a565d1-3bb7-0310-b661-cf11e63c67ab
This commit is contained in:
parent
61b27fc2e4
commit
a3d9ca5604
11
autogen.sh
11
autogen.sh
|
@ -29,6 +29,13 @@ DIE=0
|
|||
DIE=1
|
||||
}
|
||||
|
||||
(libtoolize --version) < /dev/null > /dev/null 2>&1 || {
|
||||
echo
|
||||
echo "You must have libtool installed to compile $PROJECT."
|
||||
echo "Visit http://www.gnu.org/software/libtool/ for more information."
|
||||
DIE=1
|
||||
}
|
||||
|
||||
if test "$DIE" -eq 1; then
|
||||
exit 1
|
||||
fi
|
||||
|
@ -49,10 +56,12 @@ esac
|
|||
|
||||
aclocal $ACLOCAL_FLAGS
|
||||
|
||||
libtoolize --force --copy
|
||||
|
||||
# optionally feature autoheader
|
||||
(autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader
|
||||
|
||||
automake -a $am_opt
|
||||
automake -a $am_opt --copy
|
||||
autoconf
|
||||
cd $ORIGDIR
|
||||
|
||||
|
|
Reference in New Issue