X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;ds=sidebyside;f=bootstrap.sh;h=11b724d321a938999045235faa94020e0f88df1c;hb=3adbda2cd5be48b7c630325f0f92e315d7eb2cfb;hp=ef0d1a95e948fcbd5985f0797e5e875d07bf2548;hpb=c4a5d3a655e0875a710a6da9f91b397cdfd6a6b6;p=catta diff --git a/bootstrap.sh b/bootstrap.sh index ef0d1a9..11b724d 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -18,32 +18,13 @@ # 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" "$@" -} - -set -ex - -if [ "x$1" = "xam" ] ; then - run_versioned automake "$VERSION" -a -c --foreign - ./config.status -else - rm -rf autom4te.cache - rm -f config.cache - - libtoolize -c --force - run_versioned aclocal "$VERSION" -I common - autoconf -Wall - autoheader - run_versioned automake "$VERSION" -a -c --foreign - - CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var "$@" - - make clean -fi +CFLAGS="$CFLAGS -g -O0" exec ./autogen.sh $FLAGS "$@"