You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-build/kbuild/files/kbuild-0.1.9998.3572-fix-bi...

16 lines
375 B

--- a/src/kash/Makefile.kmk 2022-11-12 16:42:14.195927909 +0200
+++ b/src/kash/Makefile.kmk 2022-11-12 17:09:46.212159615 +0200
@@ -210,8 +210,11 @@
kash_USES = lex yacc
kash_LEXTOOL = FLEX
kash_LEXFLAGS = -8
-#kash_YACCTOOL = BISON
+ifneq (,$(shell bison -V))
+kash_YACCTOOL = BISON
+else
kash_YACCTOOL = YACC
+endif
kash_YACCFLAGS = -ld
kash_SOURCES += \
arith.y \