This should fix those weird autogen.sh problems.  Apparently
automake --copy thinks it fails even though it really doesn't.


SVN revision: 276
This commit is contained in:
Michael Jennings 1999-09-15 00:16:44 +00:00
parent dc7edbee66
commit dc0b3c7352
1 changed files with 16 additions and 1 deletions

View File

@ -1,9 +1,24 @@
#! /bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
THEDIR="`pwd`"
cd "$srcdir"
DIE=0
set -x
autoheader
libtoolize --ltdl --force --copy
aclocal
automake --foreign --add-missing --copy
automake --foreign --add-missing
autoconf
if test -z "$*"; then
echo "I am going to run ./configure with no arguments - if you wish "
echo "to pass any to it, please specify them on the $0 command line."
fi
cd "$THEDIR"
$srcdir/configure "$@" && echo && echo "Now type 'make' to compile imlib."