* Makefile.am (dist-hook): Always distribute just a README file,

but take its contents from README-alpha for alpha releases.
This commit is contained in:
Gary V. Vaughan 2004-08-29 16:59:23 +00:00
parent c1a20b7881
commit 2c47af0d62
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2004-08-29 Gary V. Vaughan <gary@gnu.org>
* Makefile.am (dist-hook): Always distribute just a README file,
but take its contents from README-alpha for alpha releases.
* TODO: Reformat. Removed some items that have been implemented.
2004-08-29 Gary V. Vaughan <gary@gnu.org>

View File

@ -146,3 +146,10 @@ install-data-local:
install-data-hook:
chmod +x $(DESTDIR)$(pkgdatadir)/config.guess
chmod +x $(DESTDIR)$(pkgdatadir)/config.sub
dist-hook:
## Ship README-alpha only in alpha release, but renamed to README
@case $(VERSION) in \
*[a-z]) mv $(distdir)/README-alpha $(distdir)/README ;; \
*) rm -f $(distdir)/README-alpha ;; \
esac