aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2020-08-23 23:56:57 +0000
committerKyle Evans <kevans@FreeBSD.org>2020-08-23 23:56:57 +0000
commitcc249d78007c7caaa7bdc3fa7d0fffc31ab38337 (patch)
tree6b877027ad1da851ae932bfdd735ca74bcb00fcc
parent8f32e493cc1df9b61537ce9c5d5b4ec8e2bb4563 (diff)
Notes
-rw-r--r--secure/caroot/blacklisted/Makefile2
-rw-r--r--secure/caroot/trusted/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/secure/caroot/blacklisted/Makefile b/secure/caroot/blacklisted/Makefile
index ab93d2779380..b7ccfbe88c03 100644
--- a/secure/caroot/blacklisted/Makefile
+++ b/secure/caroot/blacklisted/Makefile
@@ -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}
diff --git a/secure/caroot/trusted/Makefile b/secure/caroot/trusted/Makefile
index f159edddff05..eb382ad1bc74 100644
--- a/secure/caroot/trusted/Makefile
+++ b/secure/caroot/trusted/Makefile
@@ -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}