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 {
|
stdenv.mkDerivation {
|
||||||
name = "grub-0.97-patch-1.12";
|
name = "grub-0.97-patch-1.12";
|
||||||
|
@ -34,7 +34,7 @@ stdenv.mkDerivation {
|
||||||
] ++ (stdenv.lib.optional buggyBiosCDSupport ./buggybios.patch);
|
] ++ (stdenv.lib.optional buggyBiosCDSupport ./buggybios.patch);
|
||||||
|
|
||||||
# Autoconf/automake required for the splashimage patch.
|
# Autoconf/automake required for the splashimage patch.
|
||||||
buildInputs = [autoconf automake];
|
buildInputs = [autoconf automake texinfo];
|
||||||
|
|
||||||
prePatch = ''
|
prePatch = ''
|
||||||
unpackFile $gentooPatches
|
unpackFile $gentooPatches
|
||||||
|
@ -47,6 +47,7 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
autoreconf
|
autoreconf
|
||||||
|
automake --add-missing
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.grubTarget = "";
|
passthru.grubTarget = "";
|
||||||
|
|
Loading…
Reference in New Issue