Browse Source

OpenDingux: Set ccache directory explicitly

The latest OpenDingux buildroot default to the `/__w/` ccache directory
due to a bug.

Set the ccache directory explicitly to work around that.
pull/4982/head
Gleb Mazovetskiy 4 years ago
parent
commit
51115d730f
  1. 2
      Packaging/OpenDingux/build.sh

2
Packaging/OpenDingux/build.sh

@ -94,7 +94,7 @@ cmake_configure() {
} }
cmake_build() { cmake_build() {
cmake --build "$BUILD_DIR" -j "$(getconf _NPROCESSORS_ONLN)" BR_CACHE_DIR="${HOME}/.buildroot-ccache" cmake --build "$BUILD_DIR" -j "$(getconf _NPROCESSORS_ONLN)"
} }
strip_bin() { strip_bin() {

Loading…
Cancel
Save