X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=buildconf.sh;h=071751ebd1fb809673d4d510f1f8b31f8cd95551;hb=b416df50f7dec326e96cd809220ea66a66044e88;hp=5c92300793aea950d8c9e2bcd955ceba46a38949;hpb=13c2d015252fa402b324b088bf7544632114f09c;p=yazpp-moved-to-github.git diff --git a/buildconf.sh b/buildconf.sh index 5c92300..071751e 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,5 +1,14 @@ #!/bin/sh -# $Id: buildconf.sh,v 1.1 2000-10-11 12:21:50 adam Exp $ -libtoolize -automake -a -autoconf +# $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 || exit 1 +else + 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