From d6060bd231b9cf5d22af4b850438b32016da4af8 Mon Sep 17 00:00:00 2001 From: David Gibson Date: Thu, 6 Dec 2007 13:07:50 +1100 Subject: [PATCH] dtc: Remove space from flex command line Author: Geoff Levand 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9f9bee0..bcb143f 100644 --- a/Makefile +++ b/Makefile @@ -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 $@