grub: make sure grub builds again (close #6774)

This commit is contained in:
Bob van der Linden 2015-03-12 19:15:48 +01:00 committed by Vladimír Čunát
parent 208d1f24db
commit decf15fd57
1 changed files with 3 additions and 2 deletions

View File

@ -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 = "";