diff options
author | Breno Leitao <brenohl@br.ibm.com> | 2017-01-18 15:44:39 -0500 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-01-27 16:50:10 +0200 |
commit | ae844a282ea6e949bfcc7ce000cce405b35f3c91 (patch) | |
tree | 7a78f57699728573e3a3d224cf9eb7f0e5992b62 /main/boost/APKBUILD | |
parent | a47f5a5c3d879c2e66bc9dd25198d46cc446d28d (diff) | |
download | aports-ae844a282ea6e949bfcc7ce000cce405b35f3c91.tar.bz2 aports-ae844a282ea6e949bfcc7ce000cce405b35f3c91.tar.xz |
main/boost: Add support for ppc64le
Add support for ppc64le architecture, which is linuxppc on boost arch
nomenclature.
Diffstat (limited to 'main/boost/APKBUILD')
-rw-r--r-- | main/boost/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/boost/APKBUILD b/main/boost/APKBUILD index fa978512d4..601d9ce374 100644 --- a/main/boost/APKBUILD +++ b/main/boost/APKBUILD @@ -73,8 +73,9 @@ _options="--user-config=\"$builddir/user-config.jam\" " case "$CARCH" in - armhf|aarch64) _boostarch=arm;; - *) _boostarch=$CARCH;; + armhf|aarch64) _boostarch=arm ;; + ppc64*) _boostarch=ppc ;; + *) _boostarch=$CARCH ;; esac _enginedir=tools/build/src/engine |