diff options
Diffstat (limited to 'tiler/bootstrap.sh')
-rwxr-xr-x | tiler/bootstrap.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tiler/bootstrap.sh b/tiler/bootstrap.sh new file mode 100755 index 0000000..6170918 --- /dev/null +++ b/tiler/bootstrap.sh @@ -0,0 +1,18 @@ +#! /bin/sh + +cd `dirname $0` + +# on some platforms, you have "g" versions of some of these tools instead, +# ie glibtoolize instead of libtoolize.. +find_tool() { + which $1 2> /dev/null || which g$1 2> /dev/null +} + +aclocal=`find_tool aclocal` +libtoolize=`find_tool libtoolize` +automake=`find_tool automake` +autoconf=`find_tool autoconf` +autoheader=`find_tool autoheader` + +mkdir -p config && $autoheader && $aclocal && $libtoolize --copy --force && $automake --copy --add-missing --foreign && $autoconf + |