X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=blobdiff_plain;f=bootstrap;fp=bootstrap;h=2d871d82c678b54d1fcc7118357320da5d215dad;hp=0000000000000000000000000000000000000000;hb=7b0b840bfa54126486d0824e214fa4611880e0e1;hpb=d8736f77764e18812d1c05769bd211b56539d1c1 diff --git a/bootstrap b/bootstrap new file mode 100755 index 00000000..2d871d82 --- /dev/null +++ b/bootstrap @@ -0,0 +1,25 @@ +#!/bin/sh + +set -x + +rm -rf autom4te*.cache + +# build it all. +aclocal -I macros $ACLOCAL_FLAGS || exit 1 +autoheader || exit 1 +libtoolize --force --copy +automake --include-deps --add-missing --foreign --copy || exit 1 +autoconf || exit 1 + +# Original configure call was: +#./configure --enable-maintainer-mode "$@" +# However, according to: +# http://sources.redhat.com/autobook/autobook/autobook_43.html#SEC43 +# we need to have AM_MAINTAINER_MODE in configure.in in order to use +# this feature. It's not there at the moment, so I'm changing the +# configure call. +# And sometimes I don't want this to run. +[ -z "$NOEXECCONFIGURE" ] && ./configure "$@" + +# Let's not fall off the end... +exit 0