aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorPaul Eggert2011-01-14 10:56:58 -0800
committerPaul Eggert2011-01-14 10:56:58 -0800
commit9f4b8b4732b3fa386da6cf009c828e8153b78275 (patch)
tree29aa02897f473399f37b911f96eaa87369aa90ac /make-dist
parentf80aa5bfa90dff5cd75d1f40e4ababa3c86af7fb (diff)
downloademacs-9f4b8b4732b3fa386da6cf009c828e8153b78275.tar.gz
emacs-9f4b8b4732b3fa386da6cf009c828e8153b78275.zip
* make-dist: Distribute test/ files too.
Distribute every file under test/ that is under version control, using patterns like *.el to capture files that are added later. Without this change, "configure" would fail, because it would attempt to build from a Makefile.in that was not distributed.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist21
1 files changed, 21 insertions, 0 deletions
diff --git a/make-dist b/make-dist
index 88a307d7ca1..b24c96b2003 100755
--- a/make-dist
+++ b/make-dist
@@ -295,6 +295,7 @@ for subdir in site-lisp \
295 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \ 295 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \
296 `find etc lisp -type d` \ 296 `find etc lisp -type d` \
297 doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \ 297 doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \
298 test test/automated test/cedet test/cedet/tests test/indent \
298 info m4 msdos \ 299 info m4 msdos \
299 nextstep nextstep/Cocoa nextstep/Cocoa/Emacs.base \ 300 nextstep nextstep/Cocoa nextstep/Cocoa/Emacs.base \
300 nextstep/Cocoa/Emacs.base/Contents \ 301 nextstep/Cocoa/Emacs.base/Contents \
@@ -474,6 +475,26 @@ echo "Making links to \`doc/man'"
474 ln ChangeLog* *.1 ../../${tempdir}/doc/man 475 ln ChangeLog* *.1 ../../${tempdir}/doc/man
475 cd ../../${tempdir}/doc/man) 476 cd ../../${tempdir}/doc/man)
476 477
478echo "Making links to \`test'"
479(cd test
480 ln *.el ChangeLog README ../${tempdir}/test)
481
482echo "Making links to \`test/automated'"
483(cd test/automated
484 ln *.el Makefile.in ../../${tempdir}/test/automated)
485
486echo "Making links to \`test/cedet'"
487(cd test/cedet
488 ln *.el ../../${tempdir}/test/cedet)
489
490echo "Making links to \`test/cedet/tests'"
491(cd test/cedet/tests
492 ln *.c *.[ch]pp *.el *.hh *.java *.make ../../../${tempdir}/test/cedet/tests)
493
494echo "Making links to \`test/indent'"
495(cd test/indent
496 ln *.m *.mod *.prolog Makefile ../../${tempdir}/test/indent)
497
477### It would be nice if they could all be symlinks to top-level copy, but 498### It would be nice if they could all be symlinks to top-level copy, but
478### you're not supposed to have any symlinks in distribution tar files. 499### you're not supposed to have any symlinks in distribution tar files.
479echo "Making sure copying notices are all copies of \`COPYING'" 500echo "Making sure copying notices are all copies of \`COPYING'"