summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorSebastien Estienne <sebastien.estienne@gmail.com>2005-10-23 16:10:31 +0000
committerSebastien Estienne <sebastien.estienne@gmail.com>2005-10-23 16:10:31 +0000
commita6a50fcf1a7160fe0d7394f00c04b8f21693595f (patch)
treee4e7fd04b530d322861d76808eff1601dc0b7b0e /bootstrap.sh
parentfa3d2c43f5d0b1c7f52343c5660fe86ad7ec0982 (diff)
* make run_versionned more /bin/sh friendly
git-svn-id: file:///home/lennart/svn/public/libdaemon/trunk@92 153bfa13-eec0-0310-be40-b0cb6a0e1b4b
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index c889c14..8077106 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -22,15 +22,13 @@ case `uname -s` in
Darwin)
export LIBTOOLIZE=/opt/local/bin/glibtoolize
export PKG_CONFIG_PATH="/opt/local/lib/pkgconfig"
- FLAGS="$FLAGS --prefix=/opt/local --disable-lynx"
+ FLAGS="$FLAGS --prefix=/opt/local"
;;
FreeBSD)
cp /usr/local/share/aclocal/libtool15.m4 common
export LIBTOOLIZE=/usr/local/bin/libtoolize15
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
;;
- Linux)
- ;;
esac
CFLAGS="$CFLAGS -g -O0" exec ./autogen.sh $FLAGS "$@"