From 1a4cdb25ebeda4166a39b5aa781c17f1183252d6 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.anjos@idiap.ch> Date: Thu, 19 Jan 2017 09:19:08 +0100 Subject: [PATCH] Fix typo on ccache setup --- gitlab/before_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitlab/before_build.sh b/gitlab/before_build.sh index 840ffbe..e9c6989 100755 --- a/gitlab/before_build.sh +++ b/gitlab/before_build.sh @@ -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 -- GitLab