# HG changeset patch # User Paul Eggert # Date 1295031418 28800 # Node ID 12edc231d764c105c82571e24725e496cc20e286 # Parent c1e8771a17161149d5b8ced51e43c225e22095ed * 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. diff -r c1e8771a1716 -r 12edc231d764 ChangeLog --- a/ChangeLog Fri Jan 14 13:06:07 2011 -0500 +++ b/ChangeLog Fri Jan 14 10:56:58 2011 -0800 @@ -1,3 +1,11 @@ +2011-01-14 Paul Eggert + + * 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. + 2011-01-13 Christian Ohler * Makefile.in (INFO_FILES): Add ERT. diff -r c1e8771a1716 -r 12edc231d764 make-dist --- a/make-dist Fri Jan 14 13:06:07 2011 -0500 +++ b/make-dist Fri Jan 14 10:56:58 2011 -0800 @@ -295,6 +295,7 @@ nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \ `find etc lisp -type d` \ doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \ + test test/automated test/cedet test/cedet/tests test/indent \ info m4 msdos \ nextstep nextstep/Cocoa nextstep/Cocoa/Emacs.base \ nextstep/Cocoa/Emacs.base/Contents \ @@ -474,6 +475,26 @@ ln ChangeLog* *.1 ../../${tempdir}/doc/man cd ../../${tempdir}/doc/man) +echo "Making links to \`test'" +(cd test + ln *.el ChangeLog README ../${tempdir}/test) + +echo "Making links to \`test/automated'" +(cd test/automated + ln *.el Makefile.in ../../${tempdir}/test/automated) + +echo "Making links to \`test/cedet'" +(cd test/cedet + ln *.el ../../${tempdir}/test/cedet) + +echo "Making links to \`test/cedet/tests'" +(cd test/cedet/tests + ln *.c *.[ch]pp *.el *.hh *.java *.make ../../../${tempdir}/test/cedet/tests) + +echo "Making links to \`test/indent'" +(cd test/indent + ln *.m *.mod *.prolog Makefile ../../${tempdir}/test/indent) + ### It would be nice if they could all be symlinks to top-level copy, but ### you're not supposed to have any symlinks in distribution tar files. echo "Making sure copying notices are all copies of \`COPYING'"