glibc/hurd: Make Mach & Hurd headers propagated build inputs.

svn path=/nixpkgs/trunk/; revision=21906
This commit is contained in:
Ludovic Courtès 2010-05-19 21:32:24 +00:00
parent 63abc2ed86
commit ed19699d1f

View file

@ -39,9 +39,18 @@ in
//
(if hurdHeaders != null
then {
then rec {
inherit machHeaders hurdHeaders mig fetchgit;
propagatedBuildInputs = [ machHeaders hurdHeaders ];
passthru = {
# When building GCC itself `propagatedBuildInputs' above is not
# honored, so we pass it here so that the GCC builder can do the right
# thing.
inherit propagatedBuildInputs;
};
# XXX: Remove this hack in `stdenv-updates'.
builder = ./builder2.sh;
}