From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 78B8E58974 for ; Sun, 7 Feb 2016 12:53:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03C97E07E6; Sun, 7 Feb 2016 12:53:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A8542E07E6 for ; Sun, 7 Feb 2016 12:53:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9D4EC340A42 for ; Sun, 7 Feb 2016 12:53:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B094E8F4 for ; Sun, 7 Feb 2016 12:53:27 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1454847480.3d57190f734199a3ca48bd3a1b411b184b8963b5.robbat2@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_configkernel.sh X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 3d57190f734199a3ca48bd3a1b411b184b8963b5 X-VCS-Branch: master Date: Sun, 7 Feb 2016 12:53: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-Archives-Salt: c524d30a-7eb3-4505-afbc-464e8c3de783 X-Archives-Hash: f2740bfec1e2cc0f4bcec244b7780348 commit: 3d57190f734199a3ca48bd3a1b411b184b8963b5 Author: Robin H. Johnson gentoo org> AuthorDate: Sun Feb 7 12:18:00 2016 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun Feb 7 12:18:00 2016 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=3d57190f gen_configkernel: fix missing ||. Signed-off-by: Robin H. Johnson gentoo.org> gen_configkernel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_configkernel.sh b/gen_configkernel.sh index 81b2b52..b3a25af 100755 --- a/gen_configkernel.sh +++ b/gen_configkernel.sh @@ -38,7 +38,7 @@ function kconfig_set_opt() { optval="$3" sed -i "${kconfig}" \ -e "s/^#\? \?${optname}[ =].*/${optname}=${optval}/g" \ - gen_die "Failed to set ${optname}=${optval} in $kconfig" + || gen_die "Failed to set ${optname}=${optval} in $kconfig" } config_kernel() {