diff options
author | jbj <devnull@localhost> | 1999-01-22 18:42:31 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-01-22 18:42:31 +0000 |
commit | b3ff088a22985690ae8844d978bdcf8e83ad4e69 (patch) | |
tree | bd279b7c5ba29c9b0fdd8b4f3883dc949291c3b0 /popt/autogen.sh | |
parent | 5dbf31f418895b396607d6ae1c9275689b5e89a5 (diff) | |
download | librpm-tizen-b3ff088a22985690ae8844d978bdcf8e83ad4e69.tar.gz librpm-tizen-b3ff088a22985690ae8844d978bdcf8e83ad4e69.tar.bz2 librpm-tizen-b3ff088a22985690ae8844d978bdcf8e83ad4e69.zip |
Use libtool to build libraries, but force --disable-shared for now.
CVS patchset: 2745
CVS date: 1999/01/22 18:42:31
Diffstat (limited to 'popt/autogen.sh')
-rwxr-xr-x | popt/autogen.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/popt/autogen.sh b/popt/autogen.sh index fd0c14d70..d5f4d1061 100755 --- a/popt/autogen.sh +++ b/popt/autogen.sh @@ -7,4 +7,8 @@ if [ "$1" = "--noconfigure" ]; then exit 0; fi -./configure "$@" +if [ X"$@" = X -a "X`uname -s`" = "XLinux" ]; then + ./configure --prefix=/usr --disable-shared +else + ./configure "$@" +fi |