diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-10-15 01:49:52 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-10-15 01:49:52 +0100 |
commit | 2cb722596872a79f8cebd856f2a4adb36b075bcb (patch) | |
tree | 7d231f9669990bbead7c565a9f948f2422f2b4e2 | |
parent | 11c5438cddd8b7bbe603fe73373d6d3dd33e0eb0 (diff) | |
download | librebootfr-2cb722596872a79f8cebd856f2a4adb36b075bcb.tar.gz librebootfr-2cb722596872a79f8cebd856f2a4adb36b075bcb.zip |
Update GRUB (again): fix build issue
Workaround for GCC 4.6.3 (Trisquel 6) with GRUB commit 631a820.
struct ... foo = { 0, } is valid initializer but GCC 4.6.3 errors out with
-Werror=missing-field-initializer
The new GRUB commit initializes the variables properly.
-rwxr-xr-x | getgrub | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ cd grub # Reset to the last commit that was tested # -------------------------------------------------------------------------------- -git reset --hard 77063f4cb672f423272db7e21ca448cf3de98dcf +git reset --hard 9a67e1ac8e92cd0b7521c75a734fcaf2e58523ad # Apply patches # -------------------------------------------------------------------------------- |