aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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