Explicitly disable -Werror on NetBSD. GCC gets confused by the ARP
headers.
This commit is contained in:
parent
2bfb9c1d48
commit
2e939ac30c
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.16 2008/07/14 12:56:09 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.17 2011/11/25 22:10:48 joerg Exp $
|
||||
#
|
||||
|
||||
DISTNAME= arpd
|
||||
|
@ -19,6 +19,13 @@ MAKE_ENV+= BINOWN=${BINOWN} BINGRP=${BINGRP}
|
|||
|
||||
INSTALLATION_DIRS= sbin share/doc ${PREFIX}/etc
|
||||
|
||||
.include "../../mk/bsd.prefs.mk"
|
||||
|
||||
# Bogus warning from GCC 4.5
|
||||
.if ${OPSYS} == "NetBSD"
|
||||
BUILDLINK_TRANSFORM+= rm:-Werror
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
${INSTALL_MAN} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/arpd.README
|
||||
${INSTALL_DATA} ${WRKSRC}/arpd.conf ${DESTDIR}${PREFIX}/etc/arpd.conf.example
|
||||
|
|
Loading…
Reference in a new issue