Check-in [1a5312bdfa]
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/bash

set -e

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

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

if [ "$1" = '--commercial' ]; then
	commercial='commercial'
else
	commercial='SKIP'
fi

./certs-to-c certs/{dod,federal,$commercial}/*.crt > ../cackey_builtin_certs.h





|











1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/bash

set -e

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

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

if [ "$1" = '--commercial' ]; then
	commercial='commercial'
else
	commercial='SKIP'
fi

./certs-to-c certs/{dod,federal,$commercial}/*.crt > ../cackey_builtin_certs.h