aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorGlenn Morris2016-02-02 16:08:03 -0500
committerGlenn Morris2016-02-02 16:08:03 -0500
commit737193a44c1a6f52e910f262d5eaffec0270c024 (patch)
tree6fbbe3ad3ead7c640db70d02144c0da7adf01feb /make-dist
parent3696bf2f63782cbe14e76e2e3aa62f42b784e190 (diff)
downloademacs-737193a44c1a6f52e910f262d5eaffec0270c024.tar.gz
emacs-737193a44c1a6f52e910f262d5eaffec0270c024.zip
* make-dist: Add modules/.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist17
1 files changed, 15 insertions, 2 deletions
diff --git a/make-dist b/make-dist
index db036e700c7..719e8904e5b 100755
--- a/make-dist
+++ b/make-dist
@@ -311,7 +311,7 @@ for subdir in site-lisp \
311 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \ 311 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \
312 `find etc lisp admin test -type d` \ 312 `find etc lisp admin test -type d` \
313 doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \ 313 doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \
314 info m4 msdos \ 314 info m4 modules modules/mod-test msdos \
315 nextstep nextstep/templates \ 315 nextstep nextstep/templates \
316 nextstep/Cocoa nextstep/Cocoa/Emacs.base \ 316 nextstep/Cocoa nextstep/Cocoa/Emacs.base \
317 nextstep/Cocoa/Emacs.base/Contents \ 317 nextstep/Cocoa/Emacs.base/Contents \
@@ -323,7 +323,7 @@ do
323 323
324 if [ "$with_tests" != "yes" ]; then 324 if [ "$with_tests" != "yes" ]; then
325 case $subdir in 325 case $subdir in
326 test*) continue ;; 326 test*|*/mod-test*) continue ;;
327 esac 327 esac
328 fi 328 fi
329 329
@@ -405,6 +405,19 @@ echo "Making links to 'm4'"
405(cd m4 405(cd m4
406 ln *.m4 ../${tempdir}/m4) 406 ln *.m4 ../${tempdir}/m4)
407 407
408echo "Making links to 'modules'"
409(cd modules
410 ln *.py ../${tempdir}/modules
411 if [ "$with_tests" = "yes" ]; then
412 for f in `find mod-test -type f`; do
413 case $f in
414 *.log|*.o|*.so) continue ;;
415 esac
416 ln $f ../$tempdir/modules/$f
417 done
418 fi
419)
420
408echo "Making links to 'nt'" 421echo "Making links to 'nt'"
409(cd nt 422(cd nt
410 ln emacs-x86.manifest emacs-x64.manifest ../${tempdir}/nt 423 ln emacs-x86.manifest emacs-x64.manifest ../${tempdir}/nt