aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2011-01-14 10:58:35 -0800
committerPaul Eggert2011-01-14 10:58:35 -0800
commit46d71064338f940f2ffbd7f49a1709ac39bf44a4 (patch)
tree6d8b85420b4760fa71035fb9edc915d265b2cb12
parent6d3d61134327fe63fe33f16cf75d160686fd57b6 (diff)
parent9f4b8b4732b3fa386da6cf009c828e8153b78275 (diff)
downloademacs-46d71064338f940f2ffbd7f49a1709ac39bf44a4.tar.gz
emacs-46d71064338f940f2ffbd7f49a1709ac39bf44a4.zip
Merge: make-dist distributes test/ files too.
-rw-r--r--ChangeLog8
-rwxr-xr-xmake-dist21
2 files changed, 29 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 00cfbdfb2ca..8ec19dd371f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
12011-01-14 Paul Eggert <eggert@cs.ucla.edu>
2
3 * make-dist: Distribute test/ files too.
4 Distribute every file under test/ that is under version control,
5 using patterns like *.el to capture files that are added later.
6 Without this change, "configure" would fail, because it would
7 attempt to build from a Makefile.in that was not distributed.
8
12011-01-13 Christian Ohler <ohler@gnu.org> 92011-01-13 Christian Ohler <ohler@gnu.org>
2 10
3 * Makefile.in (INFO_FILES): Add ERT. 11 * Makefile.in (INFO_FILES): Add ERT.
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'"