summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2022-06-13 16:49:55 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2022-06-13 16:50:11 -0700
commit9f0e54ab2fcae945eef441ebb0d217bbccc6c75b (patch)
tree7760ba4851b24e5313168eb46018f7f4b3715600
parentc7b69f05bc27082823bf87a04ffcf69bca945e3c (diff)
downloadtar-9f0e54ab2fcae945eef441ebb0d217bbccc6c75b.tar.gz
Fix ‘make dist-xz’ bug
Problem reported by Pavel Raiskup in: https://lists.gnu.org/r/bug-tar/2022-06/msg00014.html * bootstrap.conf (copy_files): Also copy DISTFILES.
-rw-r--r--bootstrap.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.conf b/bootstrap.conf
index c3cdec9b..00e0d66f 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -79,7 +79,7 @@ gnulib_modules="$avoided_gnulib_modules
# copy_files srcdir dstdir
copy_files() {
- for file in `cat $1/DISTFILES`
+ for file in DISTFILES `cat $1/DISTFILES`
do
case $file in
"#*") continue;;