svn commit: r366124 - in stable/11/secure/caroot: blacklisted trusted
Kyle Evans
kevans at FreeBSD.org
Thu Sep 24 18:22:47 UTC 2020
Author: kevans
Date: Thu Sep 24 18:22:46 2020
New Revision: 366124
URL: https://svnweb.freebsd.org/changeset/base/366124
Log:
Unrevert r364793: revert r364792: caroot: switch to using echo+shell glob
This was reverted because the directory is empty and stable/11 FILES
infrastructure doesn't handle that very well. Neither directory is empty
anymore, so this is OBE.
Modified:
stable/11/secure/caroot/blacklisted/Makefile
stable/11/secure/caroot/trusted/Makefile
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/secure/caroot/blacklisted/Makefile
==============================================================================
--- stable/11/secure/caroot/blacklisted/Makefile Thu Sep 24 16:50:14 2020 (r366123)
+++ stable/11/secure/caroot/blacklisted/Makefile Thu Sep 24 18:22:46 2020 (r366124)
@@ -2,7 +2,7 @@
BINDIR= /usr/share/certs/blacklisted
-BLACKLISTED_CERTS!= ls ${.CURDIR}/*.pem 2> /dev/null || true
+BLACKLISTED_CERTS!= echo ${.CURDIR}/*.pem 2> /dev/null || true
FILES+= ${BLACKLISTED_CERTS}
Modified: stable/11/secure/caroot/trusted/Makefile
==============================================================================
--- stable/11/secure/caroot/trusted/Makefile Thu Sep 24 16:50:14 2020 (r366123)
+++ stable/11/secure/caroot/trusted/Makefile Thu Sep 24 18:22:46 2020 (r366124)
@@ -2,7 +2,7 @@
BINDIR= /usr/share/certs/trusted
-TRUSTED_CERTS!= ls ${.CURDIR}/*.pem 2> /dev/null || true
+TRUSTED_CERTS!= echo ${.CURDIR}/*.pem 2> /dev/null || true
FILES+= ${TRUSTED_CERTS}
More information about the svn-src-all
mailing list