summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2024-03-13 14:22:48 +0100
committerGitHub <noreply@github.com>2024-03-13 14:22:48 +0100
commit5bf8ed66efd5672da960f89fceed3fda92f10cee (patch)
tree9801a7ed25e5dd0c7a6b8afbe5212477d9f2b079
parent5026213864ba1a11ef03ba2e8111af8654e9404d (diff)
parentc32ed08191f21206ef14c30852f9846ef6977276 (diff)
downloadexpat-5bf8ed66efd5672da960f89fceed3fda92f10cee.tar.gz
Merge pull request #847 from TomasKorbar/doc-makefile
[2.6.1] Fix DOCBOOK_TO_MAN variable use in doc Makefile
-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