From 742e39f155af765a5542042c64a4a497f1484429 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 18 May 2015 15:30:58 +0200 Subject: [PATCH] ccache: update symlinks for cross compilers (thanks pullmoll). --- srcpkgs/ccache/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/ccache/template b/srcpkgs/ccache/template index 7d96a6f4265..16a3f8dae56 100644 --- a/srcpkgs/ccache/template +++ b/srcpkgs/ccache/template @@ -1,7 +1,7 @@ # Template file for 'ccache' pkgname=ccache version=3.2.2 -revision=2 +revision=3 bootstrap=yes build_style=gnu-configure makedepends="zlib-devel" @@ -16,7 +16,8 @@ post_install() { vmkdir usr/lib/ccache/bin for f in gcc cc c++ cpp g++; do ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${f} - for x in arm-linux-gnueabi arm-linux-gnueabihf arm-linux-gnueabihf7; do + for x in arm-linux-gnueabi arm-linux-gnueabihf armv7l-linux-gnueabihf \ + arm-linux-musleabihf armv7l-linux-musleabihf; do ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${x}-${f} done done