forked from mirrors/nixpkgs
grub: make sure grub builds again (close #6774)
This commit is contained in:
parent
208d1f24db
commit
decf15fd57
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, autoconf, automake, buggyBiosCDSupport ? true}:
|
||||
{stdenv, fetchurl, autoconf, automake, texinfo, buggyBiosCDSupport ? true}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "grub-0.97-patch-1.12";
|
||||
|
@ -34,7 +34,7 @@ stdenv.mkDerivation {
|
|||
] ++ (stdenv.lib.optional buggyBiosCDSupport ./buggybios.patch);
|
||||
|
||||
# Autoconf/automake required for the splashimage patch.
|
||||
buildInputs = [autoconf automake];
|
||||
buildInputs = [autoconf automake texinfo];
|
||||
|
||||
prePatch = ''
|
||||
unpackFile $gentooPatches
|
||||
|
@ -47,6 +47,7 @@ stdenv.mkDerivation {
|
|||
|
||||
preConfigure = ''
|
||||
autoreconf
|
||||
automake --add-missing
|
||||
'';
|
||||
|
||||
passthru.grubTarget = "";
|
||||
|
|
Loading…
Reference in a new issue