X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=buildconf.sh;h=071751ebd1fb809673d4d510f1f8b31f8cd95551;hb=b416df50f7dec326e96cd809220ea66a66044e88;hp=d16ea33d44ed12094e72d7343f9dbdaa46d6aa41;hpb=f304b5971574644559b065a70a0a964a87a55e77;p=yazpp-moved-to-github.git diff --git a/buildconf.sh b/buildconf.sh index d16ea33..071751e 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,11 +1,14 @@ #!/bin/sh -# $Id: buildconf.sh,v 1.5 2001-02-21 11:25:07 adam Exp $ +# $Id: buildconf.sh,v 1.6 2001-03-26 14:43:49 adam Exp $ dir=`aclocal --print-ac-dir` if [ -f $dir/yaz.m4 ]; then - aclocal + aclocal || exit 1 else - aclocal -I . + aclocal -I . || exit 1 +fi +libtoolize --force >/dev/null 2>&1 || exit 2 +automake -a >/dev/null 2>&1 || exit 3 +autoconf || exit 4 +if [ -f config.cache ]; then + rm config.cache fi -libtoolize --force -automake -a -autoconf