2009-12-24 Robert Millan <rmh.grub@aybabtu.com>

* autogen.sh: Workaround Automake requirement for NEWS and README.
	We really should have them, but in practice we never had.  This
	ought not be considered a regression.
This commit is contained in:
Robert Millan 2009-12-24 15:17:08 +00:00
parent 72f94a3927
commit a8859e523c
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2009-12-24 Robert Millan <rmh.grub@aybabtu.com>
* autogen.sh: Workaround Automake requirement for NEWS and README.
We really should have them, but in practice we never had. This
ought not be considered a regression.
2009-12-24 Robert Millan <rmh.grub@aybabtu.com> 2009-12-24 Robert Millan <rmh.grub@aybabtu.com>
* BUGS: Remove. * BUGS: Remove.

View file

@ -4,7 +4,12 @@ set -ex
aclocal aclocal
autoheader autoheader
# Automake is unhappy without NEWS and README, but we don't have any
touch NEWS README
automake -a -c -f automake -a -c -f
rm -f NEWS README
autoconf autoconf
exit 0 exit 0