]> git.meshlink.io Git - catta/blobdiff - bootstrap.sh
* Add custom user-specific configure flags to bootstrap.sh
[catta] / bootstrap.sh
index d24de757efb015e99afb7984b12a0b41f95397cb..11b724d321a938999045235faa94020e0f88df1c 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.
 
-VERSION=1.9
+FLAGS="--sysconfdir=/etc --localstatedir=/var"
 
-run_versioned() {
-    local P
-    type -p "$1-$2" &> /dev/null && P="$1-$2" || local P="$1"
+# Feel free to add your own custom flags in here -Lathiat
+case "$USER" in
+    lathiat|sebest)
+        FLAGS="$FLAGS --disable-monodoc"
+    ;;
+esac
 
-    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 $FLAGS "$@"