The default tar invocation by automake leaks the user and group IDs and
names into the tarball. And while those are probably going to be easy to
infer, it is unnecessary to expose them. With the automake switch from
tar format v7 to ustar this is now worse as it used to only leak the
IDs, not the names.
We set and export TAR_OPTIONS with --owner=0 and --group=0 to neuter the
information leak. Although ideally automake would set those by default.
get-version \
# EOL
+TAR_OPTIONS = --owner=0 --group=0
+export TAR_OPTIONS
+
dist-hook:
echo $(VERSION) >$(distdir)/.dist-version
if [ -d .git ]; then \