summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-04-10 17:58:05 +0200
committerLudovic Courtès <ludo@gnu.org>2012-04-10 17:58:37 +0200
commit76c738d53b1ade45bb82a68aff692ab277fa0442 (patch)
tree3eec39afca5527b4f9f96b726b3d0ce7fe61d695
parent34163eb0e229973ca43144b53f008e229b7ae851 (diff)
dist: Set the owner/group of $(DISTFILES) to UID/GID 0.
* Makeconf (dist.tar): Invoke `tar' with `--owner=0 --group=0'.
-rw-r--r--Makeconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makeconf b/Makeconf
index cb61fdbb..c658a149 100644
--- a/Makeconf
+++ b/Makeconf
@@ -448,7 +448,7 @@ dist.tar: $(DISTFILES) FORCE
# the source directory, but that must not affect the name it gets in dist.tar.
for f in $(DISTFILES); do \
if test -e "$$f"; then d=.; else d=$(srcdir); fi && \
- tar --append -f $@ \
+ tar --append -f $@ --owner=0 --group=0 \
--transform=s%^%$(dist-version)/$(dir)/% -C "$$d" "$$f" \
|| exit $$?; \
done