]> git.eshelyaron.com Git - emacs.git/commitdiff
* make-dist: Skip some more generated files in test/.
authorGlenn Morris <rgm@gnu.org>
Mon, 12 Jun 2017 17:53:38 +0000 (13:53 -0400)
committerGlenn Morris <rgm@gnu.org>
Mon, 12 Jun 2017 17:54:07 +0000 (13:54 -0400)
make-dist

index 48859936c1d4726d4d7a7f8a5e2aada2f467a98d..eb81a144ebf17c7d016035bebcfeab4b798828b5 100755 (executable)
--- 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