diff options
author | Breno Leitao <brenohl@br.ibm.com> | 2017-01-26 12:17:42 -0500 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-01-27 16:50:10 +0200 |
commit | 4631b6ac2675afc9b5da7651dd122bdd1ea077df (patch) | |
tree | 42b8ed8f0db0411b1a3593a91fae5810865063ba | |
parent | ae844a282ea6e949bfcc7ce000cce405b35f3c91 (diff) | |
download | aports-4631b6ac2675afc9b5da7651dd122bdd1ea077df.tar.bz2 aports-4631b6ac2675afc9b5da7651dd122bdd1ea077df.tar.xz |
main/musl: Add reference for ppc64le
Adding a option to be able to have musl compiled for ppc64le.
-rw-r--r-- | main/musl/APKBUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/musl/APKBUILD b/main/musl/APKBUILD index 59fee104b2..d44e05ef2c 100644 --- a/main/musl/APKBUILD +++ b/main/musl/APKBUILD @@ -42,6 +42,7 @@ install_sysroot_headers() { x86) ARCH="i386" ;; x86_64) ARCH="x86_64" ;; ppc) ARCH="powerpc" ;; + ppc64*) ARCH="powerpc64" ;; mips*) ARCH="mips" ;; esac make ARCH="$ARCH" prefix=/usr DESTDIR="${CBUILDROOT}" install-headers || return 1 |