]> code.ossystems Code Review - openembedded-core.git/commitdiff
unfs3: Fix compile regression from unfs3 port
authorJason Wessel <jason.wessel@windriver.com>
Sat, 1 Feb 2014 14:07:39 +0000 (08:07 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 2 Feb 2014 10:00:24 +0000 (10:00 +0000)
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

Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/unfs3/unfs3/unfs3_parallel_build.patch

index 67777695d5c2f50a1905b1c01827d3053ddcdb90..6f64dd5b3e15f709d86b79618d439db8b3b9bf08 100644 (file)
@@ -7,9 +7,9 @@ Jason Wessel <jason.wessel@windriver.com>
 Upstream-Status: Submitted http://sourceforge.net/p/unfs3/bugs/5/
 
 ---
- Config/Makefile.in |    ++
+ 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