summaryrefslogtreecommitdiff
path: root/make-dist
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2016-02-02 16:08:03 -0500
committerGlenn Morris <rgm@gnu.org>2016-02-02 16:08:03 -0500
commit737193a44c1a6f52e910f262d5eaffec0270c024 (patch)
tree6fbbe3ad3ead7c640db70d02144c0da7adf01feb /make-dist
parent3696bf2f63782cbe14e76e2e3aa62f42b784e190 (diff)
downloademacs-737193a44c1a6f52e910f262d5eaffec0270c024.tar.gz
* 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 \
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 msdos \
+ info m4 modules modules/mod-test msdos \
nextstep nextstep/templates \
nextstep/Cocoa nextstep/Cocoa/Emacs.base \
nextstep/Cocoa/Emacs.base/Contents \
@@ -323,7 +323,7 @@ do
if [ "$with_tests" != "yes" ]; then
case $subdir in
- test*) continue ;;
+ test*|*/mod-test*) continue ;;
esac
fi
@@ -405,6 +405,19 @@ echo "Making links to 'm4'"
(cd m4
ln *.m4 ../${tempdir}/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'"
(cd nt
ln emacs-x86.manifest emacs-x64.manifest ../${tempdir}/nt