dtc: Remove space from flex command line

Author: Geoff Levand <geoffrey.levand@am.sony.com>

Apparently some versions of flex don't correctly parse the -o
parameter, if there's a space between the -o and its argument.  So,
this patch removes it.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
David Gibson 2007-12-06 13:07:50 +11:00 committed by Jon Loeliger
parent efbbef8e4f
commit d6060bd231

View file

@ -206,7 +206,7 @@ clean: libfdt_clean tests_clean
%.lex.c: %.l
@$(VECHO) LEX $@
$(LEX) -o $@ $<
$(LEX) -o$@ $<
%.tab.c %.tab.h %.output: %.y
@$(VECHO) BISON $@