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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B5CB0158041 for ; Sun, 3 Mar 2024 05:52:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73A7FE29C7; Sun, 3 Mar 2024 05:52:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 51E64E29C7 for ; Sun, 3 Mar 2024 05:52:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 69A6A343029 for ; Sun, 3 Mar 2024 05:52:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 732CE14EC for ; Sun, 3 Mar 2024 05:52:10 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1709445072.2cc6964f97c84b02944bf72ce1b53de8e5743e54.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/xvnkb/xvnkb-0.2.11.ebuild X-VCS-Directories: app-i18n/xvnkb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2cc6964f97c84b02944bf72ce1b53de8e5743e54 X-VCS-Branch: master Date: Sun, 3 Mar 2024 05:52:10 +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: 30a731d3-00cf-46d1-ad65-b1734b7c22a8 X-Archives-Hash: ae6c8802d5be7203d61ef359d537954d commit: 2cc6964f97c84b02944bf72ce1b53de8e5743e54 Author: Eli Schwartz gmail com> AuthorDate: Sun Mar 3 05:39:22 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 3 05:51:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cc6964f app-i18n/xvnkb: run configure with bash config.h:1:1: error: expected identifier or ‘(’ before ‘-’ token 1 | -e #ifndef __VK_CONFIG_H This is just... dandy... I too love unix command flags echo'ed into my headers... It uses echo -e to a header, which breaks on non-bash shells and is generally a problem. Closes: https://bugs.gentoo.org/886069 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> app-i18n/xvnkb/xvnkb-0.2.11.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild index 876fa3426ab7..a03d2ecadfdf 100644 --- a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild +++ b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild @@ -31,8 +31,8 @@ src_prepare() { } src_configure() { - # *not* autotools - ./configure \ + # *not* autotools. Uses broken logic that assumes all the world is a bash + bash ./configure \ $(usex spell '' '--no-spellcheck') \ $(usex xft '' '--no-xft') \ --use-extstroke \