summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2024-03-03 00:39:22 -0500
committerSam James <sam@gentoo.org>2024-03-03 05:51:12 +0000
commit2cc6964f97c84b02944bf72ce1b53de8e5743e54 (patch)
tree2514b77a17823941e692484b1ab326396d2e7140 /app-i18n
parentapp-i18n/xvnkb: error out immediately if no Makefile exists (diff)
downloadgentoo-2cc6964f97c84b02944bf72ce1b53de8e5743e54.tar.gz
gentoo-2cc6964f97c84b02944bf72ce1b53de8e5743e54.tar.bz2
gentoo-2cc6964f97c84b02944bf72ce1b53de8e5743e54.zip
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 <eschwartz93@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/xvnkb/xvnkb-0.2.11.ebuild4
1 files 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 \