Commit 9e754cc5 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Polish verbose compliance in varnish.m4

This is a cosmetic tweak, it doesn't change any behavior. No need to
bump the serial for that. The benefits are a better output of silent
make executions, and the preservation of configured variables like
$(PYTHON) all the way downstream.

A word on this stunt:

    \$(A""M_V_GEN)

The backslash is here to escape the dollar sign, nothing too surprising.
However the expression between the brackets is rejected by autoconf
because it looks like an undefined macro. To prevent that, the string is
closed and reopen at once to break the token-inside-brackets construct.
parent e8812d10
...@@ -205,10 +205,10 @@ vmod_$1.lo: vcc_$1_if.c vcc_$1_if.h ...@@ -205,10 +205,10 @@ vmod_$1.lo: vcc_$1_if.c vcc_$1_if.h
vcc_$1_if.h vmod_$1.rst vmod_$1.man.rst: vcc_$1_if.c vcc_$1_if.h vmod_$1.rst vmod_$1.man.rst: vcc_$1_if.c
vcc_$1_if.c: vmod_$1.vcc vcc_$1_if.c: vmod_$1.vcc
\$(AM_V_VMODTOOL) $PYTHON $VMODTOOL -o vcc_$1_if \$(srcdir)/vmod_$1.vcc \$(AM_V_VMODTOOL) \$(PYTHON) \$(VMODTOOL) -o vcc_$1_if \$(srcdir)/vmod_$1.vcc
vmod_$1.3: vmod_$1.man.rst vmod_$1.3: vmod_$1.man.rst
$RST2MAN vmod_$1.man.rst vmod_$1.3 \$(A""M_V_GEN) \$(RST2MAN) vmod_$1.man.rst vmod_$1.3
clean: clean-vmod-$1 clean: clean-vmod-$1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment