mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 05:06:43 +00:00
Merge pull request #1096 from Kwiboo/ccache-disable
ccache: fix build with CCACHE_DISABLE
This commit is contained in:
commit
0dc1a6514f
@ -38,7 +38,9 @@ PKG_CONFIGURE_OPTS_HOST="--with-bundled-zlib"
|
|||||||
|
|
||||||
post_makeinstall_host() {
|
post_makeinstall_host() {
|
||||||
# setup ccache
|
# setup ccache
|
||||||
$ROOT/$TOOLCHAIN/bin/ccache --max-size=$CCACHE_CACHE_SIZE
|
if [ -z "$CCACHE_DISABLE" ]; then
|
||||||
|
$ROOT/$TOOLCHAIN/bin/ccache --max-size=$CCACHE_CACHE_SIZE
|
||||||
|
fi
|
||||||
|
|
||||||
cat > $ROOT/$TOOLCHAIN/bin/host-gcc <<EOF
|
cat > $ROOT/$TOOLCHAIN/bin/host-gcc <<EOF
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
Loading…
x
Reference in New Issue
Block a user