summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 6 insertions, 3 deletions
diff --git a/configure b/configure
index 42dfa9ad..ef2ed8ba 100755
--- a/configure
+++ b/configure
@@ -45,6 +45,7 @@ case $OS in
esac
PROC=`uname -m`
+LIBDIR='/usr/lib'
case $PROC in
i?86)
ln -sf linux/x86 arch/this
@@ -54,7 +55,8 @@ case $PROC in
ARCH="ARCH_PPC" ;;
x86_64)
ln -sf linux/x86_64 arch/this
- ARCH="ARCH_x86_64" ;;
+ ARCH="ARCH_x86_64"
+ LIBDIR="/usr/lib64" ;;
mips*)
ln -sf linux/mips arch/this
ARCH="ARCH_MIPS" ;;
@@ -73,7 +75,7 @@ case $PROC in
alpha)
ln -sf linux/alpha arch/this
ARCH="ARCH_ALPHA" ;;
- s390)
+ s390*)
ln -sf linux/s390 arch/this
ARCH="ARCH_S390" ;;
m68k)
@@ -167,7 +169,7 @@ done
# --------------------------------------------------------------------------
if [ $SOUP -eq -1 ]; then
- echo "Disabling libsoup support. (Network Manager won't be available.)"
+ echo "Disabling libsoup support. (Network Updater won't be available.)"
fi
# --------------------------------------------------------------------------
@@ -214,6 +216,7 @@ echo "SOUP_LIBS = ${SOUP_LIBS}" >> Makefile
echo "SOUP_CFLAGS = ${SOUP_FLAGS}" >> Makefile
echo "PACKAGE = `basename ${PWD}`" >> Makefile
echo "ARCHOPTS = " >> Makefile
+echo "LIBDIR = $LIBDIR" >> Makefile
cat Makefile.in >> Makefile