aboutsummaryrefslogtreecommitdiffstats
path: root/usrinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'usrinst.sh')
-rwxr-xr-xusrinst.sh14
1 files changed, 9 insertions, 5 deletions
diff --git a/usrinst.sh b/usrinst.sh
index a89e4f9..fc54a88 100755
--- a/usrinst.sh
+++ b/usrinst.sh
@@ -1,10 +1,14 @@
#!/bin/sh
-CPPFLAGS=-DUSBINARY ./configure --prefix=/usr \
- --disable-shared --without-conf --sysconfdir=/etc \
- --with-vcl \
-# --enable-debug --enable-profile \
- $*
+OPTIONS="--prefix=/usr"
+OPTIONS="--disable-shared $OPTIONS"
+OPTIONS="--without-conf $OPTIONS"
+OPTIONS="--sysconfdir=/etc $OPTIONS"
+OPTIONS="--with-vcl $OPTIONS"
+OPTIONS="--enable-debug $OPTIONS"
+#OPTIONS="--enable-profile $OPTIONS"
+
+CPPFLAGS=-DUSBINARY ./configure $OPTIONS $*
echo ""
echo ""