diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-05-16 08:39:37 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-05-16 08:41:02 +0000 |
commit | f29d16d615a3982dc316f715c186aead663d6216 (patch) | |
tree | 3b9c594ccdf159cbf1f2303ddef9bc57ba66d768 /main/lua-openrc | |
parent | 18a48b9589a1a665384b9678e88b83ed68d9d341 (diff) | |
download | aports-f29d16d615a3982dc316f715c186aead663d6216.tar.bz2 aports-f29d16d615a3982dc316f715c186aead663d6216.tar.xz |
main/lua-openrc: explicitly set arch for subpackages
abuild will automatically set arch=noarch to subpackages with -openrc
suffix. This is wrong in this case because this is a lua module for
openrc. We worka round this by explicitly set the arch.
Diffstat (limited to 'main/lua-openrc')
-rw-r--r-- | main/lua-openrc/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/lua-openrc/APKBUILD b/main/lua-openrc/APKBUILD index 7e73de96e4..e1a6047815 100644 --- a/main/lua-openrc/APKBUILD +++ b/main/lua-openrc/APKBUILD @@ -13,7 +13,7 @@ makedepends="openrc-dev bsd-compat-headers" subpackages="" for _i in $_luaversions; do makedepends="$makedepends lua$_i-dev" - subpackages="$subpackages lua$_i-openrc:split_${_i/./_}" + subpackages="$subpackages lua$_i-openrc:split_${_i/./_}:$arch" done source="lua-openrc-$pkgver.tar.gz::https://github.com/ncopa/lua-openrc/archive/v$pkgver.tar.gz 0001-build-fix-for-openrc-0.14.patch |