* Hack around a weird build problem on Darwin.
svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10804
This commit is contained in:
parent
c9f2559e30
commit
bda5d7d471
@ -1,6 +1,6 @@
|
|||||||
{stdenv, fetchurl, pcre}:
|
{stdenv, fetchurl, pcre}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation ({
|
||||||
name = "gnugrep-2.5.3";
|
name = "gnugrep-2.5.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
@ -14,4 +14,8 @@ stdenv.mkDerivation {
|
|||||||
homepage = http://www.gnu.org/software/grep/;
|
homepage = http://www.gnu.org/software/grep/;
|
||||||
description = "GNU implementation of the Unix grep command";
|
description = "GNU implementation of the Unix grep command";
|
||||||
};
|
};
|
||||||
}
|
} // (if stdenv.system == "i686-darwin" then {
|
||||||
|
preBuild = ''
|
||||||
|
makeFlagsArray=(mkdir_p="mkdir -p")
|
||||||
|
'';
|
||||||
|
} else {}))
|
Loading…
Reference in New Issue
Block a user