Overview
Comment: | Fixed typo in script that rebuilds built-in certs causing the files to be placed in the wrong directory |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 1a5312bdfa84bf6f0fca119a769d85c7f26ace89 |
User & Date: | rkeene on 2016-02-16 15:24:52 |
Other Links: | manifest | tags |
Context
2016-02-16
| ||
15:25 | Updated AppFS build script to set the PIN entry program check-in: 3fe401d585 user: rkeene tags: trunk | |
15:24 | Fixed typo in script that rebuilds built-in certs causing the files to be placed in the wrong directory check-in: 1a5312bdfa user: rkeene tags: trunk | |
2016-02-15
| ||
09:00 | Added basic AppFS build script check-in: 036a594834 user: rkeene tags: trunk | |
Changes
Modified build/builtin-certs-update from [9fea13231c] to [9fee736440].
1 1 #! /bin/bash 2 2 3 3 set -e 4 4 5 5 ourdir="$(dirname "$(which "$0")")" 6 -cd "${outdir}" || exit 1 6 +cd "${ourdir}" || exit 1 7 7 8 8 make -C certs/dod distclean all 9 9 make -C certs/federal distclean all 10 10 11 11 if [ "$1" = '--commercial' ]; then 12 12 commercial='commercial' 13 13 else 14 14 commercial='SKIP' 15 15 fi 16 16 17 17 ./certs-to-c certs/{dod,federal,$commercial}/*.crt > ../cackey_builtin_certs.h