summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Korbar <tkorbar@redhat.com>2024-03-13 11:01:52 +0100
committerTomas Korbar <tkorbar@redhat.com>2024-03-13 11:01:52 +0100
commitc32ed08191f21206ef14c30852f9846ef6977276 (patch)
tree9801a7ed25e5dd0c7a6b8afbe5212477d9f2b079
parent5026213864ba1a11ef03ba2e8111af8654e9404d (diff)
downloadexpat-c32ed08191f21206ef14c30852f9846ef6977276.tar.gz
Fix DOCBOOK_TO_MAN variable use in doc Makefile
Not using quotes causes problems when DOCBOOK_TO_MAN contains command and argument
-rw-r--r--expat/doc/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/expat/doc/Makefile.am b/expat/doc/Makefile.am
index 3538d0dd..9d12923d 100644
--- a/expat/doc/Makefile.am
+++ b/expat/doc/Makefile.am
@@ -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