diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-20 19:28:34 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-20 19:28:34 +0000 |
commit | 15892dedae4e2e0b0f2539859d79fcec6e955a7f (patch) | |
tree | d56c24ef59c1ac49bb65bda9f65418b9ed23c312 /applets/install.sh | |
parent | 33e4dcedb90dacbae07542fa290616d2104ac800 (diff) | |
download | busybox-w32-15892dedae4e2e0b0f2539859d79fcec6e955a7f.tar.gz busybox-w32-15892dedae4e2e0b0f2539859d79fcec6e955a7f.tar.bz2 busybox-w32-15892dedae4e2e0b0f2539859d79fcec6e955a7f.zip |
add s390x to the list
git-svn-id: svn://busybox.net/trunk/busybox@14149 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets/install.sh')
-rwxr-xr-x | applets/install.sh | 2 |
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 | |||
20 | # get the target dir for the libs | 20 | # get the target dir for the libs |
21 | # This is an incomplete/incorrect list for now | 21 | # This is an incomplete/incorrect list for now |
22 | case $(uname -m) in | 22 | case $(uname -m) in |
23 | x86_64|ppc64*|sparc64*|ia64*|hppa*64*) libdir=/lib64 ;; | 23 | x86_64|ppc64*|sparc64*|ia64*|hppa*64*|s390x*) libdir=/lib64 ;; |
24 | *) libdir=/lib ;; | 24 | *) libdir=/lib ;; |
25 | esac | 25 | esac |
26 | 26 | ||