summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2007-12-06 13:07:50 +1100
committerJon Loeliger <jdl@freescale.com>2007-12-06 09:14:12 -0600
commitd6060bd231b9cf5d22af4b850438b32016da4af8 (patch)
tree105e59b53e4fe8e190b30f3e8b12371ca331f379 /Makefile
parentefbbef8e4f86f8043760f1e48b25ab2795ba3524 (diff)
downloaddtc-d6060bd231b9cf5d22af4b850438b32016da4af8.tar.gz
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>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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 $@