3
0
Fork 0
forked from mirrors/nixpkgs

ccache: fix evaluation

This commit is contained in:
Vladimír Čunát 2014-11-16 09:19:11 +01:00
parent ee9e181ac6
commit 6fff0af6c3

View file

@ -16,11 +16,10 @@ stdenv.mkDerivation {
passthru = {
# A derivation that provides gcc and g++ commands, but that
# will end up calling ccache for the given cacheDir
links = extraConfig : (runCommand "ccache-links"
{ inherit (gcc) langC langCC; }
links = extraConfig : (runCommand "ccache-links" { }
''
mkdir -p $out/bin
if [ $langC -eq 1 ]; then
if [ -x "${gcc.gcc}/bin/gcc" ]; then
cat > $out/bin/gcc << EOF
#!/bin/sh
${extraConfig}
@ -28,7 +27,7 @@ stdenv.mkDerivation {
EOF
chmod +x $out/bin/gcc
fi
if [ $langCC -eq 1 ]; then
if [ -x "${gcc.gcc}/bin/g++" ]; then
cat > $out/bin/g++ << EOF
#!/bin/sh
${extraConfig}