From: Omar Polo Subject: Re: Don't pass -d to yacc To: Josiah Frentsos Cc: gameoftrees@openbsd.org Date: Sat, 04 Mar 2023 12:02:41 +0100 On 2023/03/03 16:13:43 -0500, Josiah Frentsos wrote: > diff 65da944d6162b961ab777eb72ce1b94b84e46689 7cb41c43260bc22d8d394486e3a4b05f0ed3e5ea > commit - 65da944d6162b961ab777eb72ce1b94b84e46689 > commit + 7cb41c43260bc22d8d394486e3a4b05f0ed3e5ea > blob - b7c896f3faf9b3cbecc58d07a2ad7f76b9226064 > blob + da721544f367f951983e552c46e9e3791ba10f65 > --- gotd/Makefile > +++ gotd/Makefile > @@ -20,6 +20,7 @@ CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib > MAN = ${PROG}.conf.5 ${PROG}.8 > > CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib -I${.CURDIR} > +YFLAGS = > > .if defined(PROFILE) > LDADD = -lutil_p -lz_p -lm_p -lc_p -levent_p > blob - dba200d19f6705b4dd9f5cd7a449af9a216da7f3 > blob + 0c0374f5265adba538b5d25e506b1cb96852f4ff > --- gotwebd/libexec/got-read-gotconfig/Makefile > +++ gotwebd/libexec/got-read-gotconfig/Makefile > @@ -7,6 +7,7 @@ LDADD = -lutil -lz > > CPPFLAGS = -I${.CURDIR}/../../../include -I${.CURDIR}/../../../lib \ > -I${.CURDIR}/../../../libexec/got-read-gotconfig > +YFLAGS = > LDADD = -lutil -lz > DPADD = ${LIBZ} ${LIBUTIL} > LDSTATIC = ${STATIC} > blob - 8cc878c329d0556ead75d394fec706c1b95d416e > blob + 08f08947dfc6447c28fc9b2ada1e6798650737b1 > --- libexec/got-read-gotconfig/Makefile > +++ libexec/got-read-gotconfig/Makefile > @@ -7,6 +7,7 @@ CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../ > path.c privsep.c hash.c parse.y pollfd.c > > CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib -I${.CURDIR} > +YFLAGS = > > .if defined(PROFILE) > LDADD = -lutil_p -lz_p > blob - c31699157d7ba2f8b65cbb6efd3c4c533b9ff4dd > blob + 7e0674cdc057692674c4bc70e39bb8a1a09f9ab5 > --- template/Makefile > +++ template/Makefile > @@ -3,4 +3,6 @@ MAN= template.1 template.7 > > MAN= template.1 template.7 > > +YFLAGS = > + > .include agreed, we don't need y.tab.h, and it seems to be done in quite a few places in /usr/src/usr.sbin/ too. committed, thanks!