X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=config%2Fbootstrap;h=d62ca6ba87f7cbc9afe7be5d40a1f55d82778dcb;hb=921abbe1906e77cc18cbe8859bc5afe9494d780e;hp=fa2cb512e947708188b8960e71902e2f4b553258;hpb=84d7363d4b9ee3a85ae99d8d56185015d227413a;p=awesomized%2Flibmemcached diff --git a/config/bootstrap b/config/bootstrap index fa2cb512..d62ca6ba 100755 --- a/config/bootstrap +++ b/config/bootstrap @@ -7,6 +7,7 @@ die() { echo "$@"; exit 1; } # LIBTOOLIZE=${LIBTOOLIZE:-libtoolize} LIBTOOLIZE_FLAGS=" --automake --copy --force" # ACLOCAL=${ACLOCAL:-aclocal} +ACLOCAL_FLAGS="-I m4" # AUTOHEADER=${AUTOHEADER:-autoheader} # AUTOMAKE=${AUTOMAKE:-automake} AUTOMAKE_FLAGS="--add-missing --copy --force" @@ -93,12 +94,12 @@ if test x$AUTOHEADER = x; then fi -run $ACLOCAL $ACLOCAL_FLAGS || die "Can't execute aclocal" -run $AUTOHEADER || die "Can't execute autoheader" - # --force means overwrite ltmain.sh script if it already exists run $LIBTOOLIZE $LIBTOOLIZE_FLAGS || die "Can't execute libtoolize" +run $ACLOCAL $ACLOCAL_FLAGS || die "Can't execute aclocal" +run $AUTOHEADER || die "Can't execute autoheader" + # --add-missing instructs automake to install missing auxiliary files # and --force to overwrite them if they already exist run $AUTOMAKE $AUTOMAKE_FLAGS || die "Can't execute automake"