diff options
Diffstat (limited to 'meta-oe/recipes-support/fbset/fbset-2.1/fbset-2.1-fix-makefile-dep.patch')
-rw-r--r-- | meta-oe/recipes-support/fbset/fbset-2.1/fbset-2.1-fix-makefile-dep.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/fbset/fbset-2.1/fbset-2.1-fix-makefile-dep.patch b/meta-oe/recipes-support/fbset/fbset-2.1/fbset-2.1-fix-makefile-dep.patch new file mode 100644 index 000000000..41ab8af3d --- /dev/null +++ b/meta-oe/recipes-support/fbset/fbset-2.1/fbset-2.1-fix-makefile-dep.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | From 3db6782de1de7ca4f1bb9ee7652c4f2808e57539 Mon Sep 17 00:00:00 2001 | ||
2 | From: Jackie Huang <jackie.huang@windriver.com> | ||
3 | Date: Thu, 10 Jan 2013 12:24:33 +0800 | ||
4 | Subject: [PATCH] fbset 2.1 fix makefile dep modes.tab.c | ||
5 | |||
6 | Upstream-Status: Inappropriate [no upstream] | ||
7 | |||
8 | fix the error in parallel build: | ||
9 | make: *** No rule to make target `modes.tab.h', needed by `lex.yy.o'. Stop. | ||
10 | |||
11 | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> | ||
12 | --- | ||
13 | Makefile | 2 +- | ||
14 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
15 | |||
16 | diff --git a/Makefile b/Makefile | ||
17 | index 61536c1..09183e5 100644 | ||
18 | --- a/Makefile | ||
19 | +++ b/Makefile | ||
20 | @@ -15,7 +15,7 @@ fbset: fbset.o modes.tab.o lex.yy.o | ||
21 | |||
22 | fbset.o: fbset.c fbset.h fb.h | ||
23 | modes.tab.o: modes.tab.c fbset.h fb.h | ||
24 | -lex.yy.o: lex.yy.c fbset.h modes.tab.h | ||
25 | +lex.yy.o: lex.yy.c fbset.h modes.tab.c | ||
26 | |||
27 | lex.yy.c: modes.l | ||
28 | $(FLEX) modes.l | ||
29 | -- | ||
30 | 1.7.4.1 | ||
31 | |||