maint: fix missing command error in make dist.

* Makefile.am ($(readme)): Don't forget the 'test'!

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
This commit is contained in:
Gary V. Vaughan 2012-10-25 07:14:27 -05:00
parent 5d7e7ec0e1
commit b7679c7c56

View File

@ -550,7 +550,7 @@ EXTRA_DIST += $(edit_readme_alpha)
re_odd_version = '\([0-9][0-9]*.[0-9][0-9]*.[0-9]*[13579]\)'
$(readme): FORCE
@if test -n `expr $(VERSION) : $(re_odd_version)`; then \
if test 0 = '$(AM_DEFAULT_VERBOSITY)' && 1 != '$(V)'; \
if test 0 = '$(AM_DEFAULT_VERBOSITY)' && test 1 != '$(V)'; \
then echo " GEN " $@; \
else echo "$(SHELL) $(edit_readme_alpha) $@"; fi; \
$(SHELL) $(edit_readme_alpha) '$@'; \