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

Libelf isn't building on Darwin according to hydra, so remove libelf-dependent GCC-4.6 from Darwin

svn path=/nixpkgs/trunk/; revision=26753
This commit is contained in:
Shea Levy 2011-04-08 13:03:53 +00:00
parent 910a79f06d
commit 352dded989

View file

@ -401,7 +401,7 @@ stdenv.mkDerivation ({
# Volunteers needed for the {Cyg,Dar}win ports of *PPL.
# gnatboot is not available out of linux platforms, so we disable the darwin build
# for the gnat (ada compiler).
platforms = stdenv.lib.platforms.linux ++ optionals (langAda == false) [ "i686-darwin" ];
platforms = stdenv.lib.platforms.linux ++ optionals (langAda == false && libelf == null) [ "i686-darwin" ];
};
}