diff options
author | Changqing Li <changqing.li@windriver.com> | 2020-04-08 10:01:58 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-04-24 14:10:07 +0100 |
commit | 40f08d2c97b74bd2f54f3a108d2b3f3a25462199 (patch) | |
tree | 01adf48e481189ad6f1649dd3635c4306e05cf7c /meta/recipes-extended/sysklogd/files | |
parent | 0cc4c008d6aacb0191f14d1e3340ba5c9f6bae8f (diff) | |
download | poky-40f08d2c97b74bd2f54f3a108d2b3f3a25462199.tar.gz |
sysklogd: update the patch
(From OE-Core rev: be4c224273039a138750c8cf88ef0e0315a92ea5)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/sysklogd/files')
-rw-r--r-- | meta/recipes-extended/sysklogd/files/0001-fix-one-rarely-reproduced-parallel-build-problem.patch | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/meta/recipes-extended/sysklogd/files/0001-fix-one-rarely-reproduced-parallel-build-problem.patch b/meta/recipes-extended/sysklogd/files/0001-fix-one-rarely-reproduced-parallel-build-problem.patch index 334577a910..97bf6ae50e 100644 --- a/meta/recipes-extended/sysklogd/files/0001-fix-one-rarely-reproduced-parallel-build-problem.patch +++ b/meta/recipes-extended/sysklogd/files/0001-fix-one-rarely-reproduced-parallel-build-problem.patch | |||
@@ -27,14 +27,14 @@ index 993dbfd..06b706d 100644 | |||
27 | libsyslog_la_LIBADD = $(LTLIBOBJS) | 27 | libsyslog_la_LIBADD = $(LTLIBOBJS) |
28 | + | 28 | + |
29 | +# Both libsyslog_la and syslogd/logger requires objects like lib/pidfile.o, for | 29 | +# Both libsyslog_la and syslogd/logger requires objects like lib/pidfile.o, for |
30 | +# # libsyslog_la, the objects should be compiled with -fPIC, but for | 30 | +# libsyslog_la, the objects should be compiled with -fPIC, but for |
31 | +# # syslogd/logger, it doesn't need -fPIC, so there is a race issue when the two | 31 | +# syslogd/logger, it doesn't need -fPIC, so there is a race issue when the two |
32 | +# # different lib/pidfile.o are compiled at the same time, which would cause errors like: | 32 | +# different lib/pidfile.o are compiled at the same time, which would cause errors like: |
33 | +# # ld: syslogd-syslogd.o: in function `main': | 33 | +# ld: syslogd-syslogd.o: in function `main': |
34 | +# # syslogd.c:417: undefined reference to `__pidfile' | 34 | +# syslogd.c:417: undefined reference to `__pidfile' |
35 | +# # | 35 | +# |
36 | +# # Make LIBOBJS depend on LTLIBOBJS to fix the problem. | 36 | +# Make LIBOBJS depend on LTLIBOBJS to fix the problem. |
37 | +# $(LIBOBJS): $(LTLIBOBJS) | 37 | +$(LIBOBJS): $(LTLIBOBJS) |
38 | -- | 38 | -- |
39 | 2.7.4 | 39 | 2.7.4 |
40 | 40 | ||