svn commit: r257485 - head/include

Sean Bruno sbruno at FreeBSD.org
Fri Nov 1 00:32:27 UTC 2013


Author: sbruno
Date: Fri Nov  1 00:32:26 2013
New Revision: 257485
URL: http://svnweb.freebsd.org/changeset/base/257485

Log:
  Install include files for netpfil/pf when requested by the Makefile
  
  Reviewed by:	glebius

Modified:
  head/include/Makefile

Modified: head/include/Makefile
==============================================================================
--- head/include/Makefile	Fri Nov  1 00:21:38 2013	(r257484)
+++ head/include/Makefile	Fri Nov  1 00:32:26 2013	(r257485)
@@ -195,6 +195,11 @@ copies:
 	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
 	    ${DESTDIR}${INCLUDEDIR}/netinet
 .endif
+.if ${MK_PF} != "no"
+	cd ${.CURDIR}/../sys/netpfil/pf; \
+	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
+	    ${DESTDIR}${INCLUDEDIR}/netpfil/pf
+.endif
 	cd ${.CURDIR}/../sys/crypto; \
 	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \
 	    ${DESTDIR}${INCLUDEDIR}/crypto


More information about the svn-src-all mailing list