Module Name: src
Committed By: riastradh
Date: Wed Sep 27 00:28:32 UTC 2023
Modified Files:
src/external/mpl/mozilla-certdata/share: Makefile
Log Message:
mozilla-certdata: Run certdata.awk with LC_ALL=C.
This has to be able to printf("%c", ...) to emit arbitrary bytes of
output in order to decode the octal-formatted DER data and print it
as raw binary DER data.
Relevant only at import time, doesn't affect builds.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/mpl/mozilla-certdata/share/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/mpl/mozilla-certdata/share/Makefile
diff -u src/external/mpl/mozilla-certdata/share/Makefile:1.2 src/external/mpl/mozilla-certdata/share/Makefile:1.3
--- src/external/mpl/mozilla-certdata/share/Makefile:1.2 Sat Sep 2 17:39:52 2023
+++ src/external/mpl/mozilla-certdata/share/Makefile Wed Sep 27 00:28:32 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2023/09/02 17:39:52 riastradh Exp $
+# $NetBSD: Makefile,v 1.3 2023/09/27 00:28:32 riastradh Exp $
#
MOZCERTS= /usr/share/certs/mozilla
@@ -65,6 +65,7 @@ regen: .PHONY
rm -f certs/*.pem
rm -f ${TRUSTDOMAINS:=.trust}
mkdir tmp
+ env LC_ALL=C \
awk -f certdata.awk \
-v CERTDIR=certs \
-v CODETRUST=code.trust \