At least as I read

http://www.gnu.org/software/automake/manual/automake.html#index-g_t_0040code_007bAM_005fDEFAULT_005fVERBOSITY_007d-1018

this is the way to do the silent-rules stuff; using nested variable
expansion in Makefile.am causes warnings when running autogen.sh.

svn path=/trunk/; revision=47474
This commit is contained in:
Guy Harris 2013-02-04 18:53:50 +00:00
parent 72db5eed02
commit 74b8ef79b1
2 changed files with 6 additions and 6 deletions

View File

@ -545,8 +545,8 @@ AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/wiretap \
# FORCE is the portable version of .PHONY
FORCE:
AM_V_PERL = $(am__v_PERL_$(V))
am__v_PERL_ = $(am__v_PERL_$(AM_DEFAULT_VERBOSITY))
AM_V_PERL = $(am__v_PERL_@AM_V@)
am__v_PERL_ = $(am__v_PERL_@AM_DEFAULT_V@)
am__v_PERL_0 = @echo " PERL " $@;
am__v_PERL_1 =

View File

@ -109,13 +109,13 @@ AUTHORS-SHORT-FORMAT: ../AUTHORS-SHORT $(srcdir)/make-authors-format.pl
wireshark.pod: $(srcdir)/wireshark.pod.template AUTHORS-SHORT-FORMAT
$(AM_V_GEN)cat $(srcdir)/wireshark.pod.template AUTHORS-SHORT-FORMAT > wireshark.pod
AM_V_POD2MAN = $(am__v_POD2MAN_$(V))
am__v_POD2MAN_ = $(am__v_POD2MAN_$(AM_DEFAULT_VERBOSITY))
AM_V_POD2MAN = $(am__v_POD2MAN_@AM_V@)
am__v_POD2MAN_ = $(am__v_POD2MAN_@AM_DEFAULT_V@)
am__v_POD2MAN_0 = @echo " POD2MAN " $@;
am__v_POD2MAN_1 =
AM_V_POD2HTML = $(am__v_POD2HTML_$(V))
am__v_POD2HTML_ = $(am__v_POD2HTML_$(AM_DEFAULT_VERBOSITY))
AM_V_POD2HTML = $(am__v_POD2HTML_@AM_V@)
am__v_POD2HTML_ = $(am__v_POD2HTML_@AM_DEFAULT_V@)
am__v_POD2HTML_0 = @echo " POD2HTML" $@;
am__v_POD2HTML_1 =