diff options
author | jbj <devnull@localhost> | 1999-04-11 22:15:26 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-04-11 22:15:26 +0000 |
commit | c5f831ad7e86abcf5e67f41a99b12362d165a354 (patch) | |
tree | a85598f629fdec8bb4e44236ae1c280647e918c0 /autogen.sh | |
parent | ba7f3e41e0713b6173e0970054b4fa13040d9b22 (diff) | |
download | rpm-c5f831ad7e86abcf5e67f41a99b12362d165a354.tar.gz rpm-c5f831ad7e86abcf5e67f41a99b12362d165a354.tar.bz2 rpm-c5f831ad7e86abcf5e67f41a99b12362d165a354.zip |
Default to not build shared libraries.
CVS patchset: 2980
CVS date: 1999/04/11 22:15:26
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index c75763908..2b88a598d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -26,7 +26,7 @@ if [ "$1" = "--noconfigure" ]; then fi if [ X"$@" = X -a "X`uname -s`" = "XLinux" ]; then - ./configure --disable-shared --prefix=/usr + ./configure --prefix=/usr else - ./configure --disable-shared "$@" + ./configure "$@" fi |