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: Wed, 02 Oct 2019 22:45:33
Message-Id: 1570019418.17e112fcedaa5bd5f5c5a8e573bd3fe8dc08879d.whissi@gentoo
1 commit: 17e112fcedaa5bd5f5c5a8e573bd3fe8dc08879d
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 12:30:18 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 12:30:18 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=17e112fc
7
8 gen_cmdline.sh: parse_cmdline(): Fix --strip argument parsing
9
10 Closes: https://bugs.gentoo.org/696056
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 gen_cmdline.sh | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/gen_cmdline.sh b/gen_cmdline.sh
17 index 825b80c..fa8a7c3 100755
18 --- a/gen_cmdline.sh
19 +++ b/gen_cmdline.sh
20 @@ -805,7 +805,7 @@ parse_cmdline() {
21 print_info 3 "CMD_NICE: ${CMD_NICE}"
22 ;;
23 --strip=*)
24 - CMD_STRIP_TYPE=$(parse_opt "$*")
25 + CMD_STRIP_TYPE="${*#*=}"
26 print_info 3 "CMD_STRIP_TYPE: ${CMD_STRIP_TYPE}"
27 ;;
28 --no-strip)