* conf/common.rmk: Add grub_script.tab.h as a grub-script-check
dependency.
* script/parser.y: #include grub_script.tab.h header.
+2010-06-21 BVK Chaitanya <bvk.groups@gmail.com>
+
+ Fix parallel build.
+
+ * conf/common.rmk: Add grub_script.tab.h as a grub-script-check
+ dependency.
+ * script/parser.y: #include grub_script.tab.h header.
+
2010-06-20 Vladimir Serbinenko <phcoder@gmail.com>
Support >3GiB and <16MiB RAM in i386-qemu.
kern/misc.c kern/env.c grub_script.tab.c \
grub_script.yy.c
grub_script_check_CFLAGS = $(GNULIB_UTIL_CFLAGS)
+grub_script_check_DEPENDENCIES = grub_script.tab.h
MOSTLYCLEANFILES += symlist.c kernel_syms.lst
DEFSYMFILES += kernel_syms.lst
#define YYLTYPE_IS_TRIVIAL 0
#define YYENABLE_NLS 0
+#include "grub_script.tab.h"
%}
%union {
statement: command { $$ = $1; }
| function { $$ = 0; }
| menuentry { $$ = $1; }
+;
argument : "case" { $$ = grub_script_add_arglist (state, 0, $1); }
| "do" { $$ = grub_script_add_arglist (state, 0, $1); }