Don't copy DISTFILES during bootstrapping

DISTFILES are necessary only during bootstrapping and should not be
distributed.

This partially reverts commit 9f0e54ab2.
This commit is contained in:
Sergey Poznyakoff
2023-05-18 07:49:04 +03:00
parent 204b414d11
commit 6af0596726
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ getopt-gnu
# copy_files srcdir dstdir
copy_files() {
for file in DISTFILES `cat $1/DISTFILES`
for file in `cat $1/DISTFILES`
do
case $file in
"#*") continue;;