Skip to content
Snippets Groups Projects
Commit 923fa364 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Force symlinking of ccache

parent 1a4cdb25
No related branches found
No related tags found
No related merge requests found
...@@ -24,8 +24,8 @@ if [ -z "${use_ccache}" ]; then ...@@ -24,8 +24,8 @@ if [ -z "${use_ccache}" ]; then
log_warn "Cannot find ccache, compiling from scratch..." log_warn "Cannot find ccache, compiling from scratch..."
else else
log_info "ccache installed at ${use_ccache}, caching compilations..." log_info "ccache installed at ${use_ccache}, caching compilations..."
run_cmd ln -s ${use_ccache} ${PREFIX}/bin/gcc run_cmd ln -sf ${use_ccache} ${PREFIX}/bin/gcc
run_cmd ln -s ${use_ccache} ${PREFIX}/bin/g++ run_cmd ln -sf ${use_ccache} ${PREFIX}/bin/g++
fi fi
# Source the newly created virtualenv # Source the newly created virtualenv
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment