Picking in pkgconfig the latest config.guess, as it does not know

mips64el-linux 3.2.0.

svn path=/nixpkgs/trunk/; revision=31754
This commit is contained in:
Lluís Batlle i Rossell 2012-01-21 01:29:17 +00:00
parent 8ea631310b
commit 9ed137c45b

View file

@ -1,6 +1,6 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, automake}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (rec {
name = "pkg-config-0.23";
setupHook = ./setup-hook.sh;
@ -21,5 +21,9 @@ stdenv.mkDerivation rec {
homepage = http://pkg-config.freedesktop.org/wiki/;
};
}
} // (if stdenv.system == "mips64el-linux" then
{
preConfigure = ''
cp -v ${automake}/share/automake*/config.{sub,guess} .
'';
} else {}))