www.freebsd.org/security/{advisories,patches}/... from the en_US.ISO8859-1 directory as we do for logos, etc. The magic is a bit special to avoid having to add each advisory or errata notice, and their patches and signatures individually. Factor out the slightly different to bsd.links.mk SYMLINKS support as well as the "bulk data install" that cannot be handled by just DATA as (i) the input dir differs, (ii) input uses a 1 or more level of sub-directories. This is the second of three steps. The last one will be to link to these files locally rather than to security.freebsd.org. Approved by: gabor
16 lines
393 B
Makefile
16 lines
393 B
Makefile
# $FreeBSD$
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
BULKDATADIRS= ${DOC_PREFIX}/share/security/advisories
|
|
|
|
# Things that went wrong in the past and had to be fixed.
|
|
# SYMLINKS+= Source Target
|
|
SYMLINKS= FreeBSD-SA-09:06.ktimer.asc FreeBSD-SA-06:09.ktimer.asc
|
|
|
|
.include "${DOC_PREFIX}/share/mk/web.site.mk"
|