aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2021-07-01 07:30:09 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2021-07-01 07:30:09 +0000
commit72458a2a824c29e3f5a1c07208522a9c49573235 (patch)
tree911f6d84c0ca376c11dec6d8665ec6895ae7c6d9
parentd68a6ab853630dc058f4fd736e05046d4d166b5e (diff)
downloadports-72458a2a824c29e3f5a1c07208522a9c49573235.tar.gz
ports-72458a2a824c29e3f5a1c07208522a9c49573235.zip
security/vuxml: Let vuln-flat.xml depend on all vuln xml files
So it can get rebuilt when any of vuln xml file changed. Approved by: ports-secteam (fluffy, implicitly)
-rw-r--r--security/vuxml/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/vuxml/Makefile b/security/vuxml/Makefile
index 4bbc740bcdab..4732225cf974 100644
--- a/security/vuxml/Makefile
+++ b/security/vuxml/Makefile
@@ -56,8 +56,8 @@ do-test:
@${CP} ${.CURDIR}/vuln.xml ${WRKDIR}/test
@cd ${.CURDIR} && make validate PKGDIR=${WRKDIR}/test
-vuln-flat.xml: vuln.xml
- xmllint -noent ${.ALLSRC} > ${.TARGET}
+vuln-flat.xml: vuln.xml vuln-20??.xml
+ xmllint -noent ${.ALLSRC:[1]} > ${.TARGET}
validate: tidy
@${SH} ${FILESDIR}/validate.sh "${VUXML_FLAT_FILE}"