summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2015-09-22 12:38:05 -0400
committerMike Gilbert <floppym@gentoo.org>2015-09-22 12:38:05 -0400
commit964539c82ff926fad5173556d0261461050896fd (patch)
treea36a098d2038d21475fe748ae4f5a8abdea9859a /eclass
parentdev-libs/weston: Version bump to 1.9.0. (diff)
downloadgentoo-964539c82ff926fad5173556d0261461050896fd.tar.gz
gentoo-964539c82ff926fad5173556d0261461050896fd.tar.bz2
gentoo-964539c82ff926fad5173556d0261461050896fd.zip
chromium.eclass: Fix kernel checks
As reported by Dennis Schridde, the chkconfig functions prepend CONFIG_ to the options, so we should not include it. Bug: https://bugs.gentoo.org/552576
Diffstat (limited to 'eclass')
-rw-r--r--eclass/chromium.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/chromium.eclass b/eclass/chromium.eclass
index 1d442f4df6f9..8b016c9226d9 100644
--- a/eclass/chromium.eclass
+++ b/eclass/chromium.eclass
@@ -37,7 +37,7 @@ chromium_suid_sandbox_check_kernel_config() {
# (bug #552576, bug #556286).
ERROR_CONFIG_ADVISE_SYSCALLS="CONFIG_ADVISE_SYSCALLS is required for the renderer (bug #552576)"
ERROR_CONFIG_COMPAT_VDSO="CONFIG_COMPAT_VDSO causes segfaults (bug #556286)"
- CONFIG_CHECK="~PID_NS ~NET_NS ~SECCOMP_FILTER ~USER_NS ~CONFIG_ADVISE_SYSCALLS ~!CONFIG_COMPAT_VDSO"
+ CONFIG_CHECK="~PID_NS ~NET_NS ~SECCOMP_FILTER ~USER_NS ~ADVISE_SYSCALLS ~!COMPAT_VDSO"
check_extra_config
fi
}