Fix DOCBOOK_TO_MAN variable use in doc Makefile

Not using quotes causes problems when DOCBOOK_TO_MAN contains
command and argument
This commit is contained in:
Tomas Korbar 2024-03-13 11:01:52 +01:00
parent 5026213864
commit c32ed08191

View file

@ -37,7 +37,7 @@ dist_man_MANS = xmlwf.1
xmlwf.1: xmlwf.xml
-rm -f $@
test x$(DOCBOOK_TO_MAN) != x && $(DOCBOOK_TO_MAN) $<
test "x$(DOCBOOK_TO_MAN)" != x && $(DOCBOOK_TO_MAN) $<
test -f $@ || mv XMLWF.1 $@
endif