mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-25 01:34:11 +03:00
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 id="php_placeholder"><\/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
This commit is contained in:
parent
13a626ccc9
commit
8947504683
@ -273,7 +273,8 @@ MAINTAINERCLEANFILES += \
|
|||||||
|| { rm $@ && exit 1; }
|
|| { rm $@ && exit 1; }
|
||||||
|
|
||||||
%.php: %.php.tmp %.php.code.in
|
%.php: %.php.tmp %.php.code.in
|
||||||
$(AM_V_GEN)sed -e '/<span id="php_placeholder"><\/span>/r '"$(srcdir)/$@.code.in" \
|
$(AM_V_GEN)sed \
|
||||||
|
-e '/<span id="php_placeholder"><\/span>/r '"$(srcdir)/$@.code.in" \
|
||||||
-e /php_placeholder/d < $@.tmp > $(srcdir)/$@ \
|
-e /php_placeholder/d < $@.tmp > $(srcdir)/$@ \
|
||||||
|| { rm $(srcdir)/$@ && exit 1; }
|
|| { rm $(srcdir)/$@ && exit 1; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user