diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-04-10 17:58:05 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-04-10 17:58:37 +0200 |
commit | 76c738d53b1ade45bb82a68aff692ab277fa0442 (patch) | |
tree | 3eec39afca5527b4f9f96b726b3d0ce7fe61d695 | |
parent | 34163eb0e229973ca43144b53f008e229b7ae851 (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-- | Makeconf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |