From: Jo-Philipp Wich Date: Tue, 24 Jan 2017 13:47:33 +0000 (+0100) Subject: phase1: ccache.sh: also overwrite dangling symlinks X-Git-Tag: v1~186 X-Git-Url: http://git.openwrt.org/?p=buildbot.git;a=commitdiff_plain;h=c5ed9101014be9ea899bf660583ad51b600fb2ab phase1: ccache.sh: also overwrite dangling symlinks Signed-off-by: Jo-Philipp Wich --- diff --git a/phase1/ccache.sh b/phase1/ccache.sh index 46081f3..057733b 100755 --- a/phase1/ccache.sh +++ b/phase1/ccache.sh @@ -11,7 +11,7 @@ grep -sq compiler_check "$HOME/.ccache/ccache.conf" || \ echo "compiler_check = %compiler% -dumpmachine; %compiler% -dumpversion" >> "$HOME/.ccache/ccache.conf" for dir in $(make --no-print-directory val.TOOLCHAIN_DIR val.STAGING_DIR val.STAGING_DIR_HOST V=s | grep staging_dir/); do - if [ ! -L "$dir/ccache" ]; then + if [ ! -L "$dir/ccache" ] || [ -L "$dir/ccache" -a ! -d "$dir/ccache" ]; then mkdir -vp "$dir" rm -vrf "$dir/ccache" ln -vs "$HOME/.ccache" "$dir/ccache"