]> git.meshlink.io Git - catta/blobdiff - bootstrap.sh
update examples to reflect recent API changes (wide area)
[catta] / bootstrap.sh
index acb153ddbcd09cdbea1b94987b7a28729a346805..3157b5d278d34553d1f58b8ef7554f064a276826 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 # $Id$
 
 # This file is part of avahi.
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 # USA.
 
-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 1.9 -a -c --foreign
-    ./config.status
-else 
-    set -ex
-
-    rm -rf autom4te.cache
-    rm -f config.cache
-
-    run_versioned aclocal 1.9 -I common
-    libtoolize -c --force
-    autoheader
-    run_versioned automake 1.9 -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 "$@"