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

Fix typo on ccache setup

parent a2f1059a
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,8 @@ if [ -z "${use_ccache}" ]; then
log_warn "Cannot find ccache, compiling from scratch..."
else
log_info "ccache installed at ${use_ccache}, caching compilations..."
run_cmd ln -s ${use_cacche} ${PREFIX}/bin/gcc
run_cmd ln -s ${use_cacche} ${PREFIX}/bin/g++
run_cmd ln -s ${use_ccache} ${PREFIX}/bin/gcc
run_cmd ln -s ${use_ccache} ${PREFIX}/bin/g++
fi
# 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