aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2017-06-12 13:53:38 -0400
committerGlenn Morris2017-06-12 13:54:07 -0400
commit710ed389126d05949dcba890cd8d3a1082851e70 (patch)
tree9b750e55db038080355e4bf0b7e8d547852f6aa0
parent1d1f30104c464de7d3557ddb4ddd157d5ee74ed0 (diff)
downloademacs-710ed389126d05949dcba890cd8d3a1082851e70.tar.gz
emacs-710ed389126d05949dcba890cd8d3a1082851e70.zip
* make-dist: Skip some more generated files in test/.
-rwxr-xr-xmake-dist5
1 files changed, 4 insertions, 1 deletions
diff --git a/make-dist b/make-dist
index 48859936c1d..eb81a144ebf 100755
--- a/make-dist
+++ b/make-dist
@@ -552,8 +552,11 @@ done
552if [ "$with_tests" = "yes" ]; then 552if [ "$with_tests" = "yes" ]; then
553 echo "Making links to 'test' and its subdirectories" 553 echo "Making links to 'test' and its subdirectories"
554 for f in `find test -type f ! -name '*.log' ! -name a.out \ 554 for f in `find test -type f ! -name '*.log' ! -name a.out \
555 ! -path test/Makefile ! -path test/data/emacs-module/Makefile 555 ! -name '*.so' ! -name '*.dll' ! -name '*.o'
556 `; do 556 `; do
557 case $f in
558 */Makefile) [ -f $f.in ] && continue ;;
559 esac
557 ln $f $tempdir/$f 560 ln $f $tempdir/$f
558 done 561 done
559fi 562fi