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:
parent
8ea631310b
commit
9ed137c45b
1 changed files with 8 additions and 4 deletions
|
@ -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 {}))
|
||||
|
|
Loading…
Reference in a new issue