Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 22 Sep 2015 16:40:04
Message-Id: 1442939885.964539c82ff926fad5173556d0261461050896fd.floppym@gentoo
1 commit: 964539c82ff926fad5173556d0261461050896fd
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 22 16:38:05 2015 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 22 16:38:05 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=964539c8
7
8 chromium.eclass: Fix kernel checks
9
10 As reported by Dennis Schridde, the chkconfig functions prepend
11 CONFIG_ to the options, so we should not include it.
12
13 Bug: https://bugs.gentoo.org/552576
14
15 eclass/chromium.eclass | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/eclass/chromium.eclass b/eclass/chromium.eclass
19 index 1d442f4..8b016c9 100644
20 --- a/eclass/chromium.eclass
21 +++ b/eclass/chromium.eclass
22 @@ -37,7 +37,7 @@ chromium_suid_sandbox_check_kernel_config() {
23 # (bug #552576, bug #556286).
24 ERROR_CONFIG_ADVISE_SYSCALLS="CONFIG_ADVISE_SYSCALLS is required for the renderer (bug #552576)"
25 ERROR_CONFIG_COMPAT_VDSO="CONFIG_COMPAT_VDSO causes segfaults (bug #556286)"
26 - CONFIG_CHECK="~PID_NS ~NET_NS ~SECCOMP_FILTER ~USER_NS ~CONFIG_ADVISE_SYSCALLS ~!CONFIG_COMPAT_VDSO"
27 + CONFIG_CHECK="~PID_NS ~NET_NS ~SECCOMP_FILTER ~USER_NS ~ADVISE_SYSCALLS ~!COMPAT_VDSO"
28 check_extra_config
29 fi
30 }