Merge pull request #534 from nitkon/master

obs-packaging: Set debian Power arch as ppc64el
This commit is contained in:
James O. D. Hunt 2019-05-24 09:39:17 +01:00 committed by GitHub
commit 0ebab2ec05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,10 @@ short_commit_length=10
arch=$(uname -m)
DEB_ARCH=$(arch_to_golang "$arch")
if [[ $DEB_ARCH == "ppc64le" ]]; then
DEB_ARCH="ppc64el"
fi
GO_ARCH=$(arch_to_golang "$arch")
export GO_ARCH