emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 710ed38: * make-dist: Skip some more generated file


From: Glenn Morris
Subject: [Emacs-diffs] master 710ed38: * make-dist: Skip some more generated files in test/.
Date: Mon, 12 Jun 2017 13:54:14 -0400 (EDT)

branch: master
commit 710ed389126d05949dcba890cd8d3a1082851e70
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    * make-dist: Skip some more generated files in test/.
---
 make-dist | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/make-dist b/make-dist
index 4885993..eb81a14 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]