Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Nov 2013 00:32:26 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r257485 - head/include
Message-ID:  <201311010032.rA10WQJb034262@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311010032.rA10WQJb034262>