summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/unfs3
diff options
context:
space:
mode:
authorJason Wessel <jason.wessel@windriver.com>2014-02-01 08:07:39 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-02 11:22:08 +0000
commit1ae1b2885177e29324b6758cb8c123ab7cdbaf9b (patch)
treef4158edc9e9ce9db85382d688804640d4d43efbc /meta/recipes-devtools/unfs3
parentd93620baea489c9b20f740c0d06dcb39cf364ecb (diff)
downloadast2050-yocto-poky-1ae1b2885177e29324b6758cb8c123ab7cdbaf9b.zip
ast2050-yocto-poky-1ae1b2885177e29324b6758cb8c123ab7cdbaf9b.tar.gz
unfs3: Fix compile regression from unfs3 port
A line got dropped from the original patch when porting to the latest unfs3. The regression was introduced in commit 7d8075c64 (unfs3: Fix dependencies and allow target builds). This patch restores the missing line from the original which had been working fine for over a year's time. --- a/Config/Makefile.in +++ b/Config/Makefile.in @@ -12,7 +12,9 @@ all: lib.a lib.a: $(OBJS) $(AR) crs lib.a $(OBJS) -y.tab.h y.tab.c: exports.y +y.tab.h: y.tab.c + +y.tab.c: exports.y $(YACC) -d exports.y (From OE-Core rev: 9edbd9d872c128038fd7b56fac713256fd69c6c5) Signed-off-by: Jason Wessel <jason.wessel@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/unfs3')
-rw-r--r--meta/recipes-devtools/unfs3/unfs3/unfs3_parallel_build.patch7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/recipes-devtools/unfs3/unfs3/unfs3_parallel_build.patch b/meta/recipes-devtools/unfs3/unfs3/unfs3_parallel_build.patch
index 6777769..6f64dd5 100644
--- a/meta/recipes-devtools/unfs3/unfs3/unfs3_parallel_build.patch
+++ b/meta/recipes-devtools/unfs3/unfs3/unfs3_parallel_build.patch
@@ -7,9 +7,9 @@ Jason Wessel <jason.wessel@windriver.com>
Upstream-Status: Submitted http://sourceforge.net/p/unfs3/bugs/5/
---
- Config/Makefile.in | 2 ++
+ Config/Makefile.in | 3 +++
Makefile.in | 3 ++-
- 2 files changed, 4 insertions(+), 1 deletion(-)
+ 2 files changed, 5 insertions(+), 1 deletion(-)
--- a/Makefile.in
+++ b/Makefile.in
@@ -25,10 +25,11 @@ Upstream-Status: Submitted http://sourceforge.net/p/unfs3/bugs/5/
$(CC) -o $@ $(OBJS) $(CONFOBJ) $(EXTRAOBJ) $(LDFLAGS)
--- a/Config/Makefile.in
+++ b/Config/Makefile.in
-@@ -16,6 +16,8 @@ lib.a: $(OBJS)
+@@ -16,6 +16,9 @@ lib.a: $(OBJS)
$(AR) crs lib.a $(OBJS)
y.tab.h y.tab.c: $(srcdir)/exports.y
++y.tab.h: y.tab.c
+
+y.tab.c: $(srcdir)/exports.y
$(YACC) -d $(srcdir)/exports.y
OpenPOWER on IntegriCloud