mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 05:05:00 +00:00
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:
parent
5026213864
commit
c32ed08191
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue