Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix ccache lib path on fedora
  • Loading branch information
3nids committed Jul 20, 2021
1 parent 210b757 commit 6be5167
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .docker/docker-qgis-build.sh
Expand Up @@ -30,8 +30,13 @@ pushd build > /dev/null
echo "${bold}Running cmake...${endbold}"
echo "::group::cmake"

export CC=/usr/lib/ccache/clang
export CXX=/usr/lib/ccache/clang++
if [[ -f "/usr/lib64/ccache/clang" ]]; then
export CC=/usr/lib64/ccache/clang
export CXX=/usr/lib64/ccache/clang++
else
export CC=/usr/lib/ccache/clang
export CXX=/usr/lib/ccache/clang++
fi

CMAKE_EXTRA_ARGS=()
if [[ ${PATCH_QT_3D} == "true" ]]; then
Expand Down

0 comments on commit 6be5167

Please sign in to comment.