X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;ds=sidebyside;f=bootstrap.sh;h=3157b5d278d34553d1f58b8ef7554f064a276826;hb=57c2beeef0ae8e84dc790f023867da5dfc9aac7f;hp=d24de757efb015e99afb7984b12a0b41f95397cb;hpb=df686f9a488c3854c425c2a501a342cb438c54f8;p=catta diff --git a/bootstrap.sh b/bootstrap.sh index d24de75..3157b5d 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # $Id$ # This file is part of avahi. @@ -18,33 +18,4 @@ # 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" - - shift 2 - "$P" "$@" -} - -if [ "x$1" = "xam" ] ; then - set -ex - run_versioned automake "$VERSION" -a -c --foreign - ./config.status -else - set -ex - - rm -rf autom4te.cache - rm -f config.cache - - run_versioned aclocal "$VERSION" -I common - libtoolize -c --force - autoheader - run_versioned automake "$VERSION" -a -c --foreign - autoconf -Wall - - CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var "$@" - - make clean -fi +CFLAGS="$CFLAGS -g -O0" exec ./autogen.sh --sysconfdir=/etc --localstatedir=/var "$@"