Date: Thu, 24 Sep 2020 18:22:47 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r366124 - in stable/11/secure/caroot: blacklisted trusted Message-ID: <202009241822.08OIMlCK006505@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009241822.08OIMlCK006505>