Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: /
Date: Sat, 06 Feb 2021 16:28:32
Message-Id: 1612628866.ca0338252c5a6837f420ad93114f481d7af32afc.whissi@gentoo
1 commit: ca0338252c5a6837f420ad93114f481d7af32afc
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 6 16:22:37 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 6 16:27:46 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=ca033825
7
8 genkernel: make sure GREP_OPTIONS is unset
9
10 We are using grep command and user could have set GREP_OPTIONS
11 environment variable which could cause problems.
12
13 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
14
15 genkernel | 1 +
16 1 file changed, 1 insertion(+)
17
18 diff --git a/genkernel b/genkernel
19 index 85c2021..7d5a75e 100755
20 --- a/genkernel
21 +++ b/genkernel
22 @@ -46,6 +46,7 @@ then
23 GK_SETTINGS+=( EXTRAVERSION )
24 GK_SETTINGS+=( INSTALL_MOD_PATH )
25 GK_SETTINGS+=( MOD_INSTALL )
26 + GK_SETTINGS+=( GREP_OPTIONS )
27
28 for GK_SETTING in "${GK_SETTINGS[@]}"
29 do