commit 456eac18fc74e56e4163b12185eee70dfb493bcb
Author: Jonas Hahnfeld <hahnjo@hahnjo.de>
Date:   Mon Jul 13 16:02:44 2020 +0200

    Fix order argument to tar
    
    Possible arguments are none, name, and inode where we want the files
    to be sorted by name. This was wrong in commit de776d8898 ("Sort file
    names in dist tar.gz file").

diff --git a/GNUmakefile.in b/GNUmakefile.in
index 3865850..a94dbf7 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -54,7 +54,7 @@ dist: local-dist $(GENERATED_BUILD_FILES) top-doc refresh-release-files .gitfile
 	if test -n "`find $(top-src-dir) -name .git`"; then \
 	  COMMIT_DATE=`git --git-dir=$(top-src-dir)/.git log -1 --format=%cD`; \
 	  find $(distdir) | xargs touch -d "$$COMMIT_DATE"; fi
-	(cd ./$(depth)/$(outdir); $(TAR) --sort=order -cf - --owner=0 --group=0 $(DIST_NAME) | gzip -9 > $(DIST_NAME).tar.gz)
+	(cd ./$(depth)/$(outdir); $(TAR) --sort=name -cf - --owner=0 --group=0 $(DIST_NAME) | gzip -9 > $(DIST_NAME).tar.gz)
 	rm -rf $(distdir)
 
 top-doc:
