From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5FC2C138334 for ; Wed, 2 Oct 2019 22:45:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CBCAE090E; Wed, 2 Oct 2019 22:45:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4986EE0918 for ; Wed, 2 Oct 2019 22:45:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E47F34B7D1 for ; Wed, 2 Oct 2019 22:45:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1EC2832 for ; Wed, 2 Oct 2019 22:45:27 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1570019418.17e112fcedaa5bd5f5c5a8e573bd3fe8dc08879d.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_cmdline.sh X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 17e112fcedaa5bd5f5c5a8e573bd3fe8dc08879d X-VCS-Branch: master Date: Wed, 2 Oct 2019 22:45:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3d000632-bc21-49c4-8dfe-8e3bd7af0d14 X-Archives-Hash: 7a82879c9cb746aa2d163a68f300acbc commit: 17e112fcedaa5bd5f5c5a8e573bd3fe8dc08879d Author: Thomas Deutschmann gentoo org> AuthorDate: Wed Oct 2 12:30:18 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Wed Oct 2 12:30:18 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=17e112fc gen_cmdline.sh: parse_cmdline(): Fix --strip argument parsing Closes: https://bugs.gentoo.org/696056 Signed-off-by: Thomas Deutschmann gentoo.org> gen_cmdline.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_cmdline.sh b/gen_cmdline.sh index 825b80c..fa8a7c3 100755 --- a/gen_cmdline.sh +++ b/gen_cmdline.sh @@ -805,7 +805,7 @@ parse_cmdline() { print_info 3 "CMD_NICE: ${CMD_NICE}" ;; --strip=*) - CMD_STRIP_TYPE=$(parse_opt "$*") + CMD_STRIP_TYPE="${*#*=}" print_info 3 "CMD_STRIP_TYPE: ${CMD_STRIP_TYPE}" ;; --no-strip)