diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-04-28 22:29:07 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-30 23:01:29 +0100 |
commit | 055a5bbfc7686c8eec3aad2bcbcf90c40031cc34 (patch) | |
tree | 106e7be48391be3ae13f9be88fb9d02b6858cc36 /meta/recipes-bsp/pcmciautils | |
parent | 2d51e2ff2f77fc6b14e50bd3a32998953d809a48 (diff) | |
download | openembedded-core-contrib-055a5bbfc7686c8eec3aad2bcbcf90c40031cc34.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.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/pcmciautils')
-rw-r--r-- | meta/recipes-bsp/pcmciautils/pcmciautils-018/Makefile-fix-for-parallel-build.patch | 12 |
1 files changed, 6 insertions, 6 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 c9a7ada4084..d0bb3d6f1a5 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 @@ -18,11 +18,11 @@ Upstream-Status: Pending Signed-off-by: Robert Yang <liezhi.yang@windriver.com> --- - Makefile | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) + Makefile | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile -index d45fdc3..d4ffd7e 100644 +index d45fdc3..963453a 100644 --- a/Makefile +++ b/Makefile @@ -246,7 +246,9 @@ $(PCMCIA_SOCKET_STARTUP): $(LIBC) src/startup.o src/yacc_config.o src/lex_config @@ -30,9 +30,9 @@ index d45fdc3..d4ffd7e 100644 $(QUIET) $(STRIPCMD) $@ -yacc_config.o lex_config.o: %.o: %.c -+lex_config.o: yacc_config.h -+ -+yacc_config.o lex_config.o: %.o: %.c: %.h ++lex_config.o: lex_config.c yacc_config.h ++ $(CC) -c -MD -O -pipe $(CPPFLAGS) $< ++yacc_config.o: yacc_config.c $(CC) -c -MD -O -pipe $(CPPFLAGS) $< debugtools: ccdv $(CBDUMP) $(CISDUMP) |