diff options
| author | Robert Yang <liezhi.yang@windriver.com> | 2015-03-29 19:50:44 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-13 22:33:19 +0100 |
| commit | df59ac227e76e12d502df178dfca102114ab2c1c (patch) | |
| tree | c446880fda1584f8821364cf28892031a8cec3d6 | |
| parent | 5fd4453d827fd7f5d4eec9292d61d532d074992e (diff) | |
| download | poky-df59ac227e76e12d502df178dfca102114ab2c1c.tar.gz | |
pcmciautils: fix for parallel build
Fixed:
Compiling lex_config.c.
src/lex_config.l:34:25: fatal error: yacc_config.h: No such file or directory
There was a patch for fixing the paralle issue before, so modify the
patch again.
(From OE-Core rev: e1193feb30fbbfacb430ccbb9f33cd782f7cb87d)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-bsp/pcmciautils/pcmciautils-018/Makefile-fix-for-parallel-build.patch | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/meta/recipes-bsp/pcmciautils/pcmciautils-018/Makefile-fix-for-parallel-build.patch b/meta/recipes-bsp/pcmciautils/pcmciautils-018/Makefile-fix-for-parallel-build.patch index e9eaab780d..c9a7ada408 100644 --- a/meta/recipes-bsp/pcmciautils/pcmciautils-018/Makefile-fix-for-parallel-build.patch +++ b/meta/recipes-bsp/pcmciautils/pcmciautils-018/Makefile-fix-for-parallel-build.patch | |||
| @@ -10,6 +10,10 @@ Fixed: | |||
| 10 | | ^ | 10 | | ^ |
| 11 | | compilation terminated. | 11 | | compilation terminated. |
| 12 | 12 | ||
| 13 | And: | ||
| 14 | Compiling lex_config.c. | ||
| 15 | src/lex_config.l:34:25: fatal error: yacc_config.h: No such file or directory | ||
| 16 | |||
| 13 | Upstream-Status: Pending | 17 | Upstream-Status: Pending |
| 14 | 18 | ||
| 15 | Signed-off-by: Robert Yang <liezhi.yang@windriver.com> | 19 | Signed-off-by: Robert Yang <liezhi.yang@windriver.com> |
| @@ -18,14 +22,16 @@ Signed-off-by: Robert Yang <liezhi.yang@windriver.com> | |||
| 18 | 1 file changed, 1 insertion(+), 1 deletion(-) | 22 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 19 | 23 | ||
| 20 | diff --git a/Makefile b/Makefile | 24 | diff --git a/Makefile b/Makefile |
| 21 | index d45fdc3..de2a5f9 100644 | 25 | index d45fdc3..d4ffd7e 100644 |
| 22 | --- a/Makefile | 26 | --- a/Makefile |
| 23 | +++ b/Makefile | 27 | +++ b/Makefile |
| 24 | @@ -246,7 +246,7 @@ $(PCMCIA_SOCKET_STARTUP): $(LIBC) src/startup.o src/yacc_config.o src/lex_config | 28 | @@ -246,7 +246,9 @@ $(PCMCIA_SOCKET_STARTUP): $(LIBC) src/startup.o src/yacc_config.o src/lex_config |
| 25 | $(QUIET) $(LD) $(LDFLAGS) -o $@ $(CRT0) src/startup.o src/yacc_config.o src/lex_config.o $(LIB_OBJS) $(ARCH_LIB_OBJS) | 29 | $(QUIET) $(LD) $(LDFLAGS) -o $@ $(CRT0) src/startup.o src/yacc_config.o src/lex_config.o $(LIB_OBJS) $(ARCH_LIB_OBJS) |
| 26 | $(QUIET) $(STRIPCMD) $@ | 30 | $(QUIET) $(STRIPCMD) $@ |
| 27 | 31 | ||
| 28 | -yacc_config.o lex_config.o: %.o: %.c | 32 | -yacc_config.o lex_config.o: %.o: %.c |
| 33 | +lex_config.o: yacc_config.h | ||
| 34 | + | ||
| 29 | +yacc_config.o lex_config.o: %.o: %.c: %.h | 35 | +yacc_config.o lex_config.o: %.o: %.c: %.h |
| 30 | $(CC) -c -MD -O -pipe $(CPPFLAGS) $< | 36 | $(CC) -c -MD -O -pipe $(CPPFLAGS) $< |
| 31 | 37 | ||
