summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-08-06 00:21:41 +0000
committerLennart Poettering <lennart@poettering.net>2005-08-06 00:21:41 +0000
commitdf686f9a488c3854c425c2a501a342cb438c54f8 (patch)
treeb87fd4a881a45f215b6eab0bd735f35cd8a1e7f3 /bootstrap.sh
parentc011557b07abda8145d7a711095acdd4284fe367 (diff)
Require automake 1.9
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@241 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index acb153d..d24de75 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -18,6 +18,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
+VERSION=1.9
+
run_versioned() {
local P
type -p "$1-$2" &> /dev/null && P="$1-$2" || local P="$1"
@@ -28,7 +30,7 @@ run_versioned() {
if [ "x$1" = "xam" ] ; then
set -ex
- run_versioned automake 1.9 -a -c --foreign
+ run_versioned automake "$VERSION" -a -c --foreign
./config.status
else
set -ex
@@ -36,10 +38,10 @@ else
rm -rf autom4te.cache
rm -f config.cache
- run_versioned aclocal 1.9 -I common
+ run_versioned aclocal "$VERSION" -I common
libtoolize -c --force
autoheader
- run_versioned automake 1.9 -a -c --foreign
+ run_versioned automake "$VERSION" -a -c --foreign
autoconf -Wall
CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var "$@"