comparison autogen.sh @ 12624:83606de30dae stable

maint: generate ChangeLog automatically * Move old hand-edited ChangeLog files to OLD-ChangeLogs directory. * changelog.tmpl: New file. * Makefile.am (BUILT_DISTFILES): Add ChangeLog to the list. (EXTRA_DIST): Add OLD-ChangeLogs files. (ChangeLog): New target. * autogen.sh: Don't require ChangeLog to exist.
author John W. Eaton <jwe@octave.org>
date Tue, 19 Apr 2011 21:52:56 -0400
parents a73df5341f3c
children b67c2d580a25
comparison
equal deleted inserted replaced
12620:6f3f18957851 12624:83606de30dae
13 ## Check for files that automake --gnu would normally look for, except 13 ## Check for files that automake --gnu would normally look for, except
14 ## AUTHORS, which we autogenerate from the documentation files along with 14 ## AUTHORS, which we autogenerate from the documentation files along with
15 ## building the rest of Octave, and INSTALL, which is linked from 15 ## building the rest of Octave, and INSTALL, which is linked from
16 ## gnulib/doc/INSTALL by the bootstrap script. 16 ## gnulib/doc/INSTALL by the bootstrap script.
17 17
18 for f in NEWS README ChangeLog COPYING; do 18 for f in NEWS README COPYING; do
19 if ! test -f $f; then 19 if ! test -f $f; then
20 echo "required file $f is missing" 2>&1 20 echo "required file $f is missing" 2>&1
21 exit 1 21 exit 1
22 fi 22 fi
23 done 23 done