1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #11566 from Bevaz/ccache-links

ccache: create symlinks to gcc lib & include in ccache-links directory
This commit is contained in:
Peter Simons 2015-12-29 16:29:16 +01:00
commit c5f28c305a

View file

@ -49,6 +49,9 @@ stdenv.mkDerivation {
ln -s ${gcc.cc}/bin/$executable $out/bin/$executable
fi
done
for file in $(ls ${gcc.cc} | grep -vw bin); do
ln -s ${gcc.cc}/$file $out/$file
done
'');
};