From 76c738d53b1ade45bb82a68aff692ab277fa0442 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 10 Apr 2012 17:58:05 +0200 Subject: dist: Set the owner/group of $(DISTFILES) to UID/GID 0. * Makeconf (dist.tar): Invoke `tar' with `--owner=0 --group=0'. --- Makeconf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makeconf') 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 -- cgit v1.2.3