diff options
author | sr20det <amd-1600@ya.ru> | 2017-08-04 09:51:47 +0300 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2017-08-04 09:15:23 +0200 |
commit | eec52dc3492738596c4832e7124a37eb04913ce9 (patch) | |
tree | affad20a49791ec3a251aa8c689c5937a68b09c9 /sys-process | |
parent | app-forensics/lynis: remove vulnerable versions. (diff) | |
download | gentoo-eec52dc3492738596c4832e7124a37eb04913ce9.tar.gz gentoo-eec52dc3492738596c4832e7124a37eb04913ce9.tar.bz2 gentoo-eec52dc3492738596c4832e7124a37eb04913ce9.zip |
Update atop-2.3.0.ebuild
don't die if optional kernel feature not set
Closes: https://github.com/gentoo/gentoo/pull/5290
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/atop/atop-2.3.0.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys-process/atop/atop-2.3.0.ebuild b/sys-process/atop/atop-2.3.0.ebuild index 373ca36e8d61..31cb7439dd37 100644 --- a/sys-process/atop/atop-2.3.0.ebuild +++ b/sys-process/atop/atop-2.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit linux-mod systemd toolchain-funcs +inherit linux-info systemd toolchain-funcs DESCRIPTION="Resource-specific view of processes" HOMEPAGE="https://www.atoptool.nl/ https://github.com/Atoptool/atop" @@ -39,7 +39,8 @@ PATCHES=( pkg_pretend() { if use kernel_linux ; then - CONFIG_CHECK="BSD_PROCESS_ACCT" + CONFIG_CHECK="~BSD_PROCESS_ACCT" + check_extra_config fi } |