X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=bootstrap.sh;h=7eb0d14944f6711dbfffcdbd6cadda03b9fe93fe;hb=2452b35ceb07e536c3c506c82cd79d44efad4165;hp=d50ba727f80c6327b84ce6bbb30c9f6337ac2b8c;hpb=d865d04651f5563c2b3257a8f2073c9eac5fcfe0;p=catta diff --git a/bootstrap.sh b/bootstrap.sh index d50ba72..7eb0d14 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # $Id$ # This file is part of avahi. @@ -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" @@ -26,23 +28,22 @@ run_versioned() { "$P" "$@" } +set -ex + if [ "x$1" = "xam" ] ; then - set -ex - run_versioned automake 1.7 -a -c --foreign + run_versioned automake "$VERSION" -a -c --foreign ./config.status else - set -ex - rm -rf autom4te.cache rm -f config.cache - run_versioned aclocal 1.7 + run_versioned aclocal "$VERSION" -I common libtoolize -c --force autoheader - run_versioned automake 1.7 -a -c --foreign + run_versioned automake "$VERSION" -a -c --foreign autoconf -Wall - CFLAGS="-g -O0" ./configure --sysconfdir=/etc --localstatedir=/var"$@" + CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var "$@" make clean fi