diff options
author | Sven Vermeulen <swift@gentoo.org> | 2016-07-03 12:51:27 +0200 |
---|---|---|
committer | Sven Vermeulen <swift@gentoo.org> | 2016-07-03 12:52:25 +0200 |
commit | 8dd51a9d19cf3744e688598bfb3d78fb3c6c1567 (patch) | |
tree | ac751a1328df2dcf325ac5b4f322bcec4840beae /sec-policy/selinux-kdump | |
parent | media-gfx/exiv2: Stable for HPPA (bug #565826). (diff) | |
download | gentoo-8dd51a9d19cf3744e688598bfb3d78fb3c6c1567.tar.gz gentoo-8dd51a9d19cf3744e688598bfb3d78fb3c6c1567.tar.bz2 gentoo-8dd51a9d19cf3744e688598bfb3d78fb3c6c1567.zip |
sec-policy: Enable arm, arm64 and mips keywords inside the -9999 ebuilds
The -9999 ebuilds do not have a set KEYWORDS, but the same ebuilds are used
when creating a new release. For this purpose, the -9999 ebuilds have a
conditional code like the following:
if [[ ${PV} != 9999* ]] ; then
KEYWORDS="~amd64 ~x86"
fi
In this commit, we update that part to include ~arm, ~arm64 and ~mips.
Package-Manager: portage-2.2.28
Diffstat (limited to 'sec-policy/selinux-kdump')
-rw-r--r-- | sec-policy/selinux-kdump/selinux-kdump-9999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sec-policy/selinux-kdump/selinux-kdump-9999.ebuild b/sec-policy/selinux-kdump/selinux-kdump-9999.ebuild index 4ce96e414ba1..d1be578e70d9 100644 --- a/sec-policy/selinux-kdump/selinux-kdump-9999.ebuild +++ b/sec-policy/selinux-kdump/selinux-kdump-9999.ebuild @@ -11,5 +11,5 @@ inherit selinux-policy-2 DESCRIPTION="SELinux policy for kdump" if [[ ${PV} != 9999* ]] ; then - KEYWORDS="~amd64 ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86" fi |