mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
* Symlink g++ as well (NIXPKGS-62).
svn path=/nixpkgs/branches/stdenv-updates/; revision=9772
This commit is contained in:
parent
8b3186528e
commit
3949fff65d
1 changed files with 6 additions and 0 deletions
|
@ -80,6 +80,12 @@ postInstall() {
|
||||||
ln -sfn gcc $i
|
ln -sfn gcc $i
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
for i in $out/bin/*-c++* $out/bin/*-g++*; do
|
||||||
|
if cmp -s $out/bin/g++ $i; then
|
||||||
|
ln -sfn g++ $i
|
||||||
|
fi
|
||||||
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue