]> arthur.barton.de Git - netatalk.git/blob - bootstrap
Spelling fix in log message: continous -> continuous
[netatalk.git] / bootstrap
1 #!/bin/sh
2
3 set -x
4
5 rm -rf autom4te*.cache
6
7 # build it all.
8 aclocal -I macros $ACLOCAL_FLAGS || exit 1
9 autoheader || exit 1
10 libtoolize --force --copy
11 automake --include-deps --add-missing --foreign --copy || exit 1
12 autoconf || exit 1
13
14 # Original configure call was:
15 #./configure --enable-maintainer-mode "$@"
16 # However, according to:
17 #  http://sources.redhat.com/autobook/autobook/autobook_43.html#SEC43
18 # we need to have AM_MAINTAINER_MODE in configure.in in order to use
19 # this feature.  It's not there at the moment, so I'm changing the
20 # configure call.
21 # And sometimes I don't want this to run.
22 # [ -z "$NOEXECCONFIGURE" ] && ./configure "$@"
23
24 # Let's not fall off the end...
25 exit 0