forked from mirrors/nixpkgs
openjdk: Fix hardcoded sed
svn path=/nixpkgs/trunk/; revision=28041
This commit is contained in:
parent
0734d0315e
commit
e3ebf2024a
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl, unzip, procps, coreutils, gnugrep}:
|
{stdenv, fetchurl, unzip, procps, coreutils, gnugrep, gnused}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "openjdk-7b127";
|
name = "openjdk-7b127";
|
||||||
|
@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
|
||||||
DATE=${coreutils}/bin/date \
|
DATE=${coreutils}/bin/date \
|
||||||
PWD=${coreutils}/bin/pwd \
|
PWD=${coreutils}/bin/pwd \
|
||||||
TR=${coreutils}/bin/tr \
|
TR=${coreutils}/bin/tr \
|
||||||
|
SED=${gnused}/bin/sed \
|
||||||
CC=${stdenv.gcc}/bin/gcc
|
CC=${stdenv.gcc}/bin/gcc
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue