Author: dj
Date: 2010-02-14 09:07:19 -0700 (Sun, 14 Feb 2010)
New Revision: 8250
Modified:
trunk/auxfiles/makeblfscas.sh
trunk/auxfiles/mkcabundle.pl
Log:
Updated mkcabundle.pl and makeblfscas.sh to use local copy of certdat.txt
Modified: trunk/auxfiles/makeblfscas.sh
===================================================================
--- trunk/auxfiles/makeblfscas.sh 2010-02-14 15:57:26 UTC (rev 8249)
+++ trunk/auxfiles/makeblfscas.sh 2010-02-14 16:07:19 UTC (rev 8250)
@@ -2,9 +2,10 @@
# Begin mkblfscas.sh
# Script to populate OpenSSL's CApath from a bundle of PEM formatted CAs
+# Version number is obtained from the version of nss.
if test -z "${1}"
then
- VERSION=`date --utc +%Y%m%d`
+ VERSION="3.12.4.5"
else
VERSION="${1}"
fi
Modified: trunk/auxfiles/mkcabundle.pl
===================================================================
--- trunk/auxfiles/mkcabundle.pl 2010-02-14 15:57:26 UTC (rev 8249)
+++ trunk/auxfiles/mkcabundle.pl 2010-02-14 16:07:19 UTC (rev 8250)
@@ -7,12 +7,14 @@
# http://cvs.fedoraproject.org/viewvc/rpms/ca-certificates/devel/mkcabundle.pl
#
+# This script modified to use a local copy of certdata.txt obtained from the
+# latest version of the firefox source tree. The certdata.txt file can be
+# found in mozilla-$version/security/nss/lib/ckfw/builtins/certdata.txt
-my $cvsroot = ':pserver:[email protected]:/cvsroot';
-my $certdata = 'mozilla/security/nss/lib/ckfw/builtins/certdata.txt';
+my $certdata = './certdata.txt';
-open(IN, "cvs -d $cvsroot co -p $certdata|")
- || die "could not check out certdata.txt";
+open(IN, "cat $certdata|")
+ || die "could not open certdata.txt";
my $incert = 0;
--
http://linuxfromscratch.org/mailman/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page