mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-01 10:18:09 +02:00
[Makefile.am.releasing] Exclude uid/gid from tarball
By setting GNU tar options --owner=0 --group=0
This commit is contained in:
parent
589564c3b0
commit
2fb7753903
1 changed files with 4 additions and 2 deletions
|
|
@ -8,6 +8,8 @@
|
|||
# make snapshot
|
||||
|
||||
|
||||
TAR_OPTIONS = --owner=0 --group=0
|
||||
|
||||
dist-hook: dist-clear-sticky-bits
|
||||
|
||||
# Clean up any sticky bits we may inherit from parent dir
|
||||
|
|
@ -18,7 +20,7 @@ dist-clear-sticky-bits:
|
|||
snapshot:
|
||||
distdir="$(distdir)-`date '+%Y%m%d'`"; \
|
||||
test -d "$(srcdir)/.git" && distdir=$$distdir-`cd "$(srcdir)" && git-rev-parse HEAD | cut -c 1-6`; \
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir="$$distdir" dist
|
||||
TAR_OPTIONS="$(TAR_OPTIONS)" $(MAKE) $(AM_MAKEFLAGS) distdir="$$distdir" dist
|
||||
|
||||
RELEASE_OR_SNAPSHOT = $$(if test "x$(CAIRO_VERSION_MINOR)" = "x$$(echo "$(CAIRO_VERSION_MINOR)/2*2" | bc)" ; then echo release; else echo snapshot; fi)
|
||||
RELEASE_UPLOAD_HOST = cairographics.org
|
||||
|
|
@ -83,7 +85,7 @@ release-check: \
|
|||
release-verify-newer \
|
||||
$(NULL)
|
||||
$(MAKE) $(AM_MAKEFLAGS) release-remove-old
|
||||
$(MAKE) $(AM_MAKEFLAGS) distcheck
|
||||
TAR_OPTIONS="$(TAR_OPTIONS)" $(MAKE) $(AM_MAKEFLAGS) distcheck
|
||||
|
||||
release-upload: $(tar_file) $(sha1_file) $(gpg_file)
|
||||
mkdir -p releases
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue