Details
Details
- Reviewers
jrtc27
Diff Detail
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 53421 Build 50312: arc lint + arc unit
Event Timeline
usr.bin/minigzip/Makefile | ||
---|---|---|
9 | Hm, or maybe just -Wno-missing-prototypes? |
usr.bin/minigzip/Makefile | ||
---|---|---|
9 | That won't work because -Wmissing-prototypes is introduced in bsd.prog.mk (via bsd.sys.mk), so effectively it would be -Wno-missing-prototypes -Wmissing-prototypes and the latter wins. (The alternative would be to move the CWARNFLAGS under bsd.prog.mk but that would be rather ugly...) |
usr.bin/minigzip/Makefile | ||
---|---|---|
9 | That's what tools/regression/fsx/Makefile does. The alternative is to use CWARNFLAGS.minigzip.c, which gets added after CWARNFLAGS. Or just pull in the fix from upstream now it's been merged. |