summaryrefslogtreecommitdiff
path: root/sysui/CustomTarget_solaris.mk
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2018-02-15 16:37:23 +0100
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2018-02-18 02:24:31 +0100
commit0add6dbacbed852f2b5180e04571f039cbf9dd0b (patch)
treea2e91dc7773c909a0d8389dd4d5512f347f1dbe3 /sysui/CustomTarget_solaris.mk
parent2b266a338718ccd994a4cef05f128eb0c1b9fdc7 (diff)
tdf#115554: Fix ownership in desktop-integration tars
Use fakeroot to call tar when creating the tar.gz archives holding the desktop-integration parts to have root:root as owner of the files inside those. Change-Id: Idcdcb4dd398f330773671266dafb354711b0f093 Reviewed-on: https://gerrit.libreoffice.org/49827 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'sysui/CustomTarget_solaris.mk')
-rw-r--r--sysui/CustomTarget_solaris.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysui/CustomTarget_solaris.mk b/sysui/CustomTarget_solaris.mk
index 20072fe0cd7f..42a0a8a90633 100644
--- a/sysui/CustomTarget_solaris.mk
+++ b/sysui/CustomTarget_solaris.mk
@@ -50,6 +50,6 @@ $(solaris_WORKDIR)/%/prototype: $(solaris_SRCDIR)/prototype
$(solaris_WORKDIR)/%-desktop-integration.tar.gz: $(solaris_WORKDIR)/%/copyright $(solaris_WORKDIR)/%/pkginfo $(solaris_WORKDIR)/%/depend $(solaris_WORKDIR)/%/mailcap $(solaris_WORKDIR)/%/postinstall $(solaris_WORKDIR)/%/postremove $(solaris_WORKDIR)/%/prototype $(call gb_CustomTarget_get_workdir,sysui/share)/%/openoffice.org.xml
# pkgmk -l 1073741824 -r $(solaris_WORKDIR) -f $(solaris_WORKDIR)/$*/prototype -o -d $(solaris_WORKDIR) ARCH=all VERSION=$(PKGVERSION.$*)
- $(GNUTAR) -cf - -C $(solaris_WORKDIR) $* | gzip > $@
+ fakeroot $(GNUTAR) -cf - -C $(solaris_WORKDIR) $* | gzip > $@
# vim: set noet sw=4 ts=4: