diff options
Diffstat (limited to 'meta-oe/recipes-support/syslog-ng/files/fix-invalid-ownership.patch')
-rw-r--r-- | meta-oe/recipes-support/syslog-ng/files/fix-invalid-ownership.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/syslog-ng/files/fix-invalid-ownership.patch b/meta-oe/recipes-support/syslog-ng/files/fix-invalid-ownership.patch new file mode 100644 index 0000000000..faf967247f --- /dev/null +++ b/meta-oe/recipes-support/syslog-ng/files/fix-invalid-ownership.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | syslog-ng: fix wrong ownership issue | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | The ownership of build user is preserved for some target files, fixed it by | ||
6 | adding --no-same-owner option to tar when extracting files. | ||
7 | |||
8 | Signed-off-by: Ming Liu <ming.liu@windriver.com> | ||
9 | --- | ||
10 | scl/Makefile.am | 2 +- | ||
11 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
12 | |||
13 | diff --git a/scl/Makefile.am b/scl/Makefile.am | ||
14 | index 57fad5d..2a29ca5 100644 | ||
15 | --- a/scl/Makefile.am | ||
16 | +++ b/scl/Makefile.am | ||
17 | @@ -14,7 +14,7 @@ scl-install-data-local: | ||
18 | fi; \ | ||
19 | done | ||
20 | $(mkinstalldirs) $(DESTDIR)/$(scldir) | ||
21 | - (cd $(srcdir)/scl; tar cf - $(SCL_SUBDIRS)) | (cd $(DESTDIR)/$(scldir) && tar xf -) | ||
22 | + (cd $(srcdir)/scl; tar cf - $(SCL_SUBDIRS)) | (cd $(DESTDIR)/$(scldir) && tar xf - --no-same-owner) | ||
23 | chmod -R u+rwX $(DESTDIR)/$(scldir) | ||
24 | |||
25 | scl-uninstall-local: | ||
26 | -- | ||
27 | 1.7.1 | ||
28 | |||