summaryrefslogtreecommitdiffstats
path: root/util/sconfig/Makefile.inc
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2010-04-08 12:59:41 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2010-04-08 12:59:41 +0000
commit05245ec05b69d2431b8ed78c05b99b1aac95a44b (patch)
treeb6fcd09c00c1b43f7f56414f1268d4395c5bb47d /util/sconfig/Makefile.inc
parent35784b62cde8b126cdb1fbb2a7a6d170760bd28d (diff)
downloadcoreboot-05245ec05b69d2431b8ed78c05b99b1aac95a44b.tar.gz
coreboot-05245ec05b69d2431b8ed78c05b99b1aac95a44b.tar.bz2
coreboot-05245ec05b69d2431b8ed78c05b99b1aac95a44b.zip
Remove #line statements in processed parser source,
to avoid clutter in revision history. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5377 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/sconfig/Makefile.inc')
-rw-r--r--util/sconfig/Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/sconfig/Makefile.inc b/util/sconfig/Makefile.inc
index 3d876f8f48ea..c040d3c341ff 100644
--- a/util/sconfig/Makefile.inc
+++ b/util/sconfig/Makefile.inc
@@ -11,12 +11,12 @@ $(obj)/util/sconfig/%.o: $(obj)/util/sconfig/%.c
ifdef SCONFIG_GENPARSER
$(top)/util/sconfig/lex.yy.c_shipped: $(top)/util/sconfig/sconfig.l
- flex -o $@ $<
+ flex -L -o $@ $<
# the .c rule also creates .h
$(top)/util/sconfig/sconfig.tab.h_shipped: $(top)/util/sconfig/sconfig.tab.c_shipped
$(top)/util/sconfig/sconfig.tab.c_shipped: $(top)/util/sconfig/sconfig.y
- bison --defines=$(top)/util/sconfig/sconfig.tab.h_shipped -o $@ $<
+ bison -l --defines=$(top)/util/sconfig/sconfig.tab.h_shipped -o $@ $<
endif