Remove obsolete comment
[centerim5.git] / bootstrap
blob70281a513a632ef125e5e7a90e50cc410a44b179
1 #! /bin/sh
2 # script shamelessly taken from openbox
4 sh() {
5 /bin/sh -c "set -x; $*"
8 export WANT_AUTOMAKE=1.9
10 sh autopoint --force || exit 1 # for GNU gettext
11 sh libtoolize --copy --force --automake || exit 1
12 sh aclocal -I m4 $ACLOCAL_FLAGS || exit 1
13 sh autoheader || exit 1
14 sh autoconf || exit 1
15 sh automake --add-missing --copy || exit 1
17 echo
18 echo You are now ready to run ./configure
19 echo enjoy!