summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorjbj <jbj>1999-04-11 22:15:30 +0000
committerjbj <jbj>1999-04-11 22:15:30 +0000
commit7a1b98fc74be661940916dc311853f524c91fa35 (patch)
tree883aeb876b9abb7d1c6a91c4e00c30ba41eb2041 /autogen.sh
parent83dd769c7b94637e8843054a3b04769c8d6d0c00 (diff)
downloadlibpopt-7a1b98fc74be661940916dc311853f524c91fa35.tar.gz
Default to not build shared libraries.r2-94
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 51e80b8..9d53309 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -19,7 +19,7 @@ fi
cd "$THEDIR"
if [ X"$@" = X -a "X`uname -s`" = "XLinux" ]; then
- $srcdir/configure --disable-shared --prefix=/usr
+ $srcdir/configure --prefix=/usr
else
- $srcdir/configure --disable-shared "$@"
+ $srcdir/configure "$@"
fi