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 6ACC2138334 for ; Sun, 4 Aug 2019 11:36:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9580BE08BE; Sun, 4 Aug 2019 11:36:37 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6CAA9E08BE for ; Sun, 4 Aug 2019 11:36:37 +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 5258F34981E for ; Sun, 4 Aug 2019 11:36:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBD6474B for ; Sun, 4 Aug 2019 11:36:34 +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: <1564918558.117519303e1a91b2e115993b28a886def4771092.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_determineargs.sh X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 117519303e1a91b2e115993b28a886def4771092 X-VCS-Branch: master Date: Sun, 4 Aug 2019 11:36:34 +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: 8888be21-55c3-444e-8d19-1334b173b63c X-Archives-Hash: c3a0bd14aa6e1aae1a4df119dd0ae772 commit: 117519303e1a91b2e115993b28a886def4771092 Author: Thomas Deutschmann gentoo org> AuthorDate: Sun Aug 4 11:20:10 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun Aug 4 11:35:58 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=11751930 gen_determineargs.sh: determine_output_filenames(): Allow "+" char in filename Allowed in LOCALVERSION and automatically set by kernel's setlocalversion script when SCM sources are modified. Bug: https://bugs.gentoo.org/691412 Signed-off-by: Thomas Deutschmann gentoo.org> gen_determineargs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_determineargs.sh b/gen_determineargs.sh index 48c0c33..d2fbd86 100755 --- a/gen_determineargs.sh +++ b/gen_determineargs.sh @@ -229,7 +229,7 @@ determine_output_filenames() { filename_vars+=( 'GK_FILENAME_SYSTEMMAP;--systemmap-filename' ) filename_vars+=( 'GK_FILENAME_SYSTEMMAP_SYMLINK;--systemmap-symlink-name' ) - local valid_filename_pattern='^[a-zA-Z0-9_.-]{1,}$' + local valid_filename_pattern='^[a-zA-Z0-9_.+-]{1,}$' local filename_combo filename_varname filename_option for filename_combo in "${filename_vars[@]}"