From: Glenn Morris Date: Mon, 12 Jun 2017 17:53:38 +0000 (-0400) Subject: * make-dist: Skip some more generated files in test/. X-Git-Tag: emacs-26.0.90~521^2~101 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=710ed389126d05949dcba890cd8d3a1082851e70;p=emacs.git * make-dist: Skip some more generated files in test/. --- diff --git a/make-dist b/make-dist index 48859936c1d..eb81a144ebf 100755 --- a/make-dist +++ b/make-dist @@ -552,8 +552,11 @@ done if [ "$with_tests" = "yes" ]; then echo "Making links to 'test' and its subdirectories" for f in `find test -type f ! -name '*.log' ! -name a.out \ - ! -path test/Makefile ! -path test/data/emacs-module/Makefile + ! -name '*.so' ! -name '*.dll' ! -name '*.o' `; do + case $f in + */Makefile) [ -f $f.in ] && continue ;; + esac ln $f $tempdir/$f done fi