* Symlink g++ as well (NIXPKGS-62).

svn path=/nixpkgs/branches/stdenv-updates/; revision=9772
This commit is contained in:
Eelco Dolstra 2007-11-21 19:30:54 +00:00
parent 8b3186528e
commit 3949fff65d

View file

@ -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
} }