If you do = instead of += it breaks the VPATH used by Automake so it won't build the adoc out of tree
Suggested-by: Nicolas Morey-Chaisemartin <[email protected]> Signed-off-by: Mike Holmes <[email protected]> --- doc/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.inc b/doc/Makefile.inc index e80bf05..27891d1 100644 --- a/doc/Makefile.inc +++ b/doc/Makefile.inc @@ -1,4 +1,4 @@ -VPATH=$(top_builddir)/doc/images +VPATH+=$(top_builddir)/doc/images .msc.svg: mscgen -T svg -i $^ -o $@ -- 2.5.0 _______________________________________________ lng-odp mailing list [email protected] https://lists.linaro.org/mailman/listinfo/lng-odp
