summaryrefslogtreecommitdiff
path: root/popt/autogen.sh
diff options
context:
space:
mode:
authorjbj <devnull@localhost>1999-01-22 18:42:31 +0000
committerjbj <devnull@localhost>1999-01-22 18:42:31 +0000
commitb3ff088a22985690ae8844d978bdcf8e83ad4e69 (patch)
treebd279b7c5ba29c9b0fdd8b4f3883dc949291c3b0 /popt/autogen.sh
parent5dbf31f418895b396607d6ae1c9275689b5e89a5 (diff)
downloadlibrpm-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-xpopt/autogen.sh6
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