From cece74b8db1b6c50e4acb310cead704a8ed9f4e7 Mon Sep 17 00:00:00 2001 From: q66 Date: Mon, 21 Jan 2019 00:04:09 +0100 Subject: [PATCH] nodejs-lts: reenable ppc64 BE support While it's not officially listed, it has been reported to still work fine, and is most likely to keep working fine as BE support is still required for AIX. [ci skip] --- srcpkgs/nodejs-lts/template | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/srcpkgs/nodejs-lts/template b/srcpkgs/nodejs-lts/template index 70bac4d6c7f..af7c9cee7f0 100644 --- a/srcpkgs/nodejs-lts/template +++ b/srcpkgs/nodejs-lts/template @@ -24,11 +24,6 @@ replaces="iojs>=0" conflicts="nodejs" provides="nodejs-runtime-0_1" -case "$XBPS_TARGET_MACHINE" in - ppc64le*) ;; - ppc64*) broken="Node is not supported on ppc64 BE Linux";; -esac - do_configure() { local _args @@ -37,7 +32,7 @@ do_configure() { case "$XBPS_TARGET_MACHINE" in arm*) _args="--dest-cpu=arm --without-snapshot" ;; aarch64*) _args="--dest-cpu=arm64 --without-snapshot" ;; - ppc64le*) _args="--dest-cpu=ppc64 --without-snapshot" ;; + ppc64*) _args="--dest-cpu=ppc64 --without-snapshot" ;; *) msg_error "$pkgver: cannot be cross compiled for ${XBPS_TARGET_MACHINE}\n" ;; esac fi