Check-in [11c30d03cf]
Overview
Comment:Updated to not update built-in certs file if one of the makes fails
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 11c30d03cf72fe516753bfb638cd8001705adf14
User & Date: rkeene on 2015-03-22 06:24:53
Other Links: manifest | tags
Context
2015-03-22
06:25
Added commericial PKI, but not referenced anywhere in CACKey check-in: 06f7fdb141 user: rkeene tags: trunk
06:24
Updated to not update built-in certs file if one of the makes fails check-in: 11c30d03cf user: rkeene tags: trunk
06:23
Fixed issue with federal certificate fetching check-in: 832276f583 user: rkeene tags: trunk
Changes

Modified build/builtin-certs-update from [6d290a2094] to [5324a34988].

1


2
3
4
5
6
7
8
9
#! /bin/bash



ourdir="$(dirname "$(which "$0")")"
cd "${outdir}" || exit 1

make -C certs/dod distclean all
make -C certs/federal distclean all

./certs-to-c certs/*/*.crt > ../cackey_builtin_certs.h

>
>








1
2
3
4
5
6
7
8
9
10
11
#! /bin/bash

set -e

ourdir="$(dirname "$(which "$0")")"
cd "${outdir}" || exit 1

make -C certs/dod distclean all
make -C certs/federal distclean all

./certs-to-c certs/*/*.crt > ../cackey_builtin_certs.h