openjdk: Override hardcoded grep

svn path=/nixpkgs/trunk/; revision=28036
This commit is contained in:
Shea Levy 2011-08-01 01:09:06 +00:00
parent b3ab977d90
commit eceec04a44

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, unzip, procps, coreutils}:
{stdenv, fetchurl, unzip, procps, coreutils, gnugrep}:
stdenv.mkDerivation rec {
name = "openjdk-7b127";
@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
makeFlags = ''
MKDIR=${coreutils}/bin/mkdir \
GREP=${gnugrep}/bin/grep \
CC=${stdenv.gcc}/bin/gcc
'';