Update of /cvsroot/libexif/libexif
In directory usw-pr-cvs1:/tmp/cvs-serv13283
Modified Files:
autogen.sh
Log Message:
forgot libtoolize
Index: autogen.sh
===================================================================
RCS file: /cvsroot/libexif/libexif/autogen.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- autogen.sh 12 Sep 2002 17:27:49 -0000 1.5
+++ autogen.sh 12 Sep 2002 18:34:20 -0000 1.6
@@ -46,6 +46,14 @@
DIE=1
}
+(libtool --version) < /dev/null > /dev/null 2>&1 || {
+ echo
+ echo "You must have libtool installed to compile $PROJECT."
+ echo "Download the appropriate package for your distribution,"
+ echo "or get the source tarball at ftp://ftp.gnu.org/gnu/libtool/"
+ DIE=1
+}
+
(automake${AUTOMAKE_SUFFIX} --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have automake installed to compile $PROJECT."
@@ -110,6 +118,12 @@
then
cp po/Makevars.template po/Makevars
fi
+
+ echo "Cleaning stuff generated by libtoolize"
+ rm -f ltmain.sh config.guess config.sub
+
+ echo "Running libtoolize --copy"
+ libtoolize --copy || fail
echo "Cleaning stuff generated by aclocal"
rm -f aclocal.m4
|