From: Gary V. Vaughan Date: Thu, 25 Oct 2012 12:14:27 +0000 (-0500) Subject: maint: fix missing command error in make dist. X-Git-Tag: v2.4.2.418~85 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b7679c7c564582cfb8bf8a88436d1cd58d6c384b;p=thirdparty%2Flibtool.git maint: fix missing command error in make dist. * Makefile.am ($(readme)): Don't forget the 'test'! Signed-off-by: Gary V. Vaughan --- diff --git a/Makefile.am b/Makefile.am index d7baa93e9..4a1d1c4ef 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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) '$@'; \