Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-02-20 22:28:34 +0300
committerMike Frysinger <vapier@gentoo.org>2006-02-20 22:28:34 +0300
commitdcbad607fcbd928ebde1ff2b40c20fdf9f9e2ec0 (patch)
treed56c24ef59c1ac49bb65bda9f65418b9ed23c312 /applets/install.sh
parent7673ccad60d4714b907a46b4b51a4e0a4fafb099 (diff)
add s390x to the list
Diffstat (limited to 'applets/install.sh')
-rwxr-xr-xapplets/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/install.sh b/applets/install.sh
index 0bffc7300..2c643f2f2 100755
--- a/applets/install.sh
+++ b/applets/install.sh
@@ -20,7 +20,7 @@ if [ "$DO_INSTALL_LIBS" != "n" ]; then
# get the target dir for the libs
# This is an incomplete/incorrect list for now
case $(uname -m) in
- x86_64|ppc64*|sparc64*|ia64*|hppa*64*) libdir=/lib64 ;;
+ x86_64|ppc64*|sparc64*|ia64*|hppa*64*|s390x*) libdir=/lib64 ;;
*) libdir=/lib ;;
esac