mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
1a6e16bcb1
- initscript: add status, PIDFILE and xconsole - syslog-ng.conf: dump the version - Fix some memory leak problems we found - Some backport patches - scl: fix wrong ownership issue - libnet: add libnet enable option and add it in PACKAGECONFIG - add HOMEPAGE - remove INC_PR - change some config into PACKAGECONFIG - add PACKAGE syslog-ng-libs to fix QA issue - use volatiles - inherit update-rc.d and update-alternative Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
29 lines
813 B
Diff
29 lines
813 B
Diff
syslog-ng: fix wrong ownership issue
|
|
|
|
Upstream-Status: Pending
|
|
|
|
The ownership of build user is preserved for some target files, fixed it by
|
|
adding --no-same-owner option to tar when extracting files.
|
|
|
|
Signed-off-by: Ming Liu <ming.liu@windriver.com>
|
|
---
|
|
scl/Makefile.am | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/scl/Makefile.am b/scl/Makefile.am
|
|
index 57fad5d..2a29ca5 100644
|
|
--- a/scl/Makefile.am
|
|
+++ b/scl/Makefile.am
|
|
@@ -14,7 +14,7 @@ scl-install-data-local:
|
|
fi; \
|
|
done
|
|
$(mkinstalldirs) $(DESTDIR)/$(scldir)
|
|
- (cd $(srcdir)/scl; tar cf - $(SCL_SUBDIRS)) | (cd $(DESTDIR)/$(scldir) && tar xf -)
|
|
+ (cd $(srcdir)/scl; tar cf - $(SCL_SUBDIRS)) | (cd $(DESTDIR)/$(scldir) && tar xf - --no-same-owner)
|
|
chmod -R u+rwX $(DESTDIR)/$(scldir)
|
|
|
|
scl-uninstall-local:
|
|
--
|
|
1.7.1
|
|
|