diff options
| author | Paul Eggert | 2011-01-14 10:58:35 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-01-14 10:58:35 -0800 |
| commit | 46d71064338f940f2ffbd7f49a1709ac39bf44a4 (patch) | |
| tree | 6d8b85420b4760fa71035fb9edc915d265b2cb12 | |
| parent | 6d3d61134327fe63fe33f16cf75d160686fd57b6 (diff) | |
| parent | 9f4b8b4732b3fa386da6cf009c828e8153b78275 (diff) | |
| download | emacs-46d71064338f940f2ffbd7f49a1709ac39bf44a4.tar.gz emacs-46d71064338f940f2ffbd7f49a1709ac39bf44a4.zip | |
Merge: make-dist distributes test/ files too.
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rwxr-xr-x | make-dist | 21 |
2 files changed, 29 insertions, 0 deletions
| @@ -1,3 +1,11 @@ | |||
| 1 | 2011-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 | |||
| 1 | 2011-01-13 Christian Ohler <ohler@gnu.org> | 9 | 2011-01-13 Christian Ohler <ohler@gnu.org> |
| 2 | 10 | ||
| 3 | * Makefile.in (INFO_FILES): Add ERT. | 11 | * Makefile.in (INFO_FILES): Add ERT. |
| @@ -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 | ||
| 478 | echo "Making links to \`test'" | ||
| 479 | (cd test | ||
| 480 | ln *.el ChangeLog README ../${tempdir}/test) | ||
| 481 | |||
| 482 | echo "Making links to \`test/automated'" | ||
| 483 | (cd test/automated | ||
| 484 | ln *.el Makefile.in ../../${tempdir}/test/automated) | ||
| 485 | |||
| 486 | echo "Making links to \`test/cedet'" | ||
| 487 | (cd test/cedet | ||
| 488 | ln *.el ../../${tempdir}/test/cedet) | ||
| 489 | |||
| 490 | echo "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 | |||
| 494 | echo "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. |
| 479 | echo "Making sure copying notices are all copies of \`COPYING'" | 500 | echo "Making sure copying notices are all copies of \`COPYING'" |