commit 5f4cdf4fa31e121c74571a03ef5c81a4fa7376d4 from: Omar Polo date: Thu Oct 01 11:06:30 2020 UTC explicitly pass -b y to ${YACC} OpenBSD yacc doesn't require the option (it's the default value after all), but bison do. commit - 089324928d5a51ea263347aca4b5b30c6e223f8b commit + 5f4cdf4fa31e121c74571a03ef5c81a4fa7376d4 blob - c9661be9fd15f246901aa9ad08c9a83684fa1269 blob + edc02fa793a350b02632dbdd48acfa24f85ee22f --- Makefile +++ Makefile @@ -8,7 +8,7 @@ lex.yy.c: lex.l y.tab.c ${LEX} lex.l y.tab.c: parse.y - ${YACC} -d parse.y + ${YACC} -b y -d parse.y OBJS = star-platinum.o lex.yy.o y.tab.o star-platinum: ${OBJS}