Skip to content

Commit a3028b6

Browse files
author
Rob Walker
authored
Add cache for others missed in 561 (project-chip#646)
1 parent 2a0bb82 commit a3028b6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

scripts/build/bootstrap.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
#!/bin/bash
22

3-
# if [[ ! -f build/default/config.status ]]; then mkdir -p build/default; (cd build/default && ../../bootstrap-configure --enable-debug --enable-coverage); else ./bootstrap -w make; fi
4-
53
if [[ ! -f build/default/config.status ]]; then
64
mkdir -p build/default
75
(cd build/default &&
8-
../../bootstrap-configure --enable-debug --enable-coverage)
6+
../../bootstrap-configure -C --enable-debug --enable-coverage)
97
elif [[ configure.ac -nt configure ]]; then
108
./bootstrap
119
else

scripts/build/bootstrap_mbedtls.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
git clean -xdf
44
mkdir -p build/default
5-
(cd build/default && ../../bootstrap-configure --enable-debug --enable-coverage --with-crypto=mbedtls)
5+
(cd build/default && ../../bootstrap-configure -C --enable-debug --enable-coverage --with-crypto=mbedtls)

0 commit comments

Comments
 (0)