bug-grub
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

" in preset-menu prevents compilation


From: Jan Zerebecki
Subject: " in preset-menu prevents compilation
Date: Fri, 6 Jul 2001 13:57:09 +0200 (CEST)

Hi, if there is an " in the preset-menu-file it's not
set to \" in the header file. The following diff fixes
this for me as a quick hack:


--- ./grub/configure    Fri Jul  6 11:50:00 2001
+++ ./my-grub/configure Fri Jul  6 15:45:23 2001
@@ -3027,6 +3027,9 @@
        case '\\':
          fputs ("\\\\", stdout);
          break;
+       case '\"':
+         fputs ("\\\"", stdout);
+         break;
        default:
          putchar (c);
        }


But to make it the right way i think it must be fixed in
acinclude.m4. I don't have automake 1.4h istalled so I
could not test this one.


--- ./grub/acinclude.m4 Wed Nov 15 00:00:00 2000
+++ ./my-grub/acinclude.m4      Fri Jul  6 15:40:18 2001
@@ -343,6 +343,9 @@
        case '\\':
          fputs ("\\\\", stdout);
          break;
+       case '\"':
+         fputs ("\\\"", stdout);
+         break;
        default:
          putchar (c);
        }


Jan

--------------------------------------------------------











reply via email to

[Prev in Thread] Current Thread [Next in Thread]