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
--------------------------------------------------------
_______________________________________________
Bug-grub mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-grub