From 894750468329080ec4ff7ee5ec43f452115d46fc Mon Sep 17 00:00:00 2001 From: John Ferlan Date: Wed, 2 Aug 2017 14:58:31 -0400 Subject: [PATCH] docs: Fix syntax-check error Commit id '94d2d6429' caused a syntax-error check to fail: docs/Makefile.am:276: $(AM_V_GEN)sed -e '/<\/span>/r '"$(srcdir)/$@.code.in" \ maint.mk: Wrap long lines in Makefiles cfg.mk:721: recipe for target 'sc_prohibit_long_lines' failed make: *** [sc_prohibit_long_lines] Error 1 make: *** Waiting for unfinished jobs.... Altered the line to put another line wrap between sed and -e --- docs/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/Makefile.am b/docs/Makefile.am index 633a0fa50c..d04b2d5c6f 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -273,7 +273,8 @@ MAINTAINERCLEANFILES += \ || { rm $@ && exit 1; } %.php: %.php.tmp %.php.code.in - $(AM_V_GEN)sed -e '/<\/span>/r '"$(srcdir)/$@.code.in" \ + $(AM_V_GEN)sed \ + -e '/<\/span>/r '"$(srcdir)/$@.code.in" \ -e /php_placeholder/d < $@.tmp > $(srcdir)/$@ \ || { rm $(srcdir)/$@ && exit 1; }