diff options
author | Glenn Morris <rgm@gnu.org> | 2017-06-07 14:39:59 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2017-06-07 14:39:59 -0400 |
commit | 622306b3fdf1b3b8f76108a3adf5a1a05437ed34 (patch) | |
tree | d64ed2c765d3529af526f7f3464c464b22fbac11 /make-dist | |
parent | 9d63c87e91ab3ddf50f009e736640d1dfc1c56c5 (diff) | |
download | emacs-622306b3fdf1b3b8f76108a3adf5a1a05437ed34.tar.gz |
* make-dist: Directory modules/mod-test no longer exists.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/make-dist b/make-dist index 1b4eae3e7db..bfd6fcbafba 100755 --- a/make-dist +++ b/make-dist @@ -392,7 +392,7 @@ for subdir in site-lisp \ nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \ `find etc lisp admin test -type d` \ doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \ - info m4 modules modules/mod-test msdos \ + info m4 modules msdos \ nextstep nextstep/templates \ nextstep/Cocoa nextstep/Cocoa/Emacs.base \ nextstep/Cocoa/Emacs.base/Contents \ @@ -404,7 +404,7 @@ do if [ "$with_tests" != "yes" ]; then case $subdir in - test*|*/mod-test*) continue ;; + test*) continue ;; esac fi @@ -483,14 +483,6 @@ echo "Making links to 'm4'" echo "Making links to 'modules'" (cd modules ln *.py ../${tempdir}/modules - if [ "$with_tests" = "yes" ]; then - for f in `find mod-test -type f`; do - case $f in - *.log|*.o|*.so) continue ;; - esac - ln $f ../$tempdir/modules/$f - done - fi ) echo "Making links to 'nt'" |