summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-02-16 18:18:06 -0500
committerGaetan Nadon <memsize@videotron.ca>2010-02-16 18:18:06 -0500
commit373922e1529b3d55513fbc0ec24527600f7b529c (patch)
tree544f21cd8b39e3633ccaaa4c50a6d433901514a7 /Makefile.am
parentb531ff3ed2ad841b716ba370fd43bbe8f06f1185 (diff)
downloadxorg-lib-libxtrans-373922e1529b3d55513fbc0ec24527600f7b529c.tar.gz
doc: use HAVE_GROFF_MM to skip doc when 'm.tmac' macros missing
This conditional is defined in XORG_WITH_GROFF macro. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index a824f02..c319038 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -33,7 +33,7 @@ dist-hook: ChangeLog INSTALL
doc_sources = Xtrans.mm
if ENABLE_DOCS
-if HAVE_GROFF
+if HAVE_GROFF_MM
if HAVE_PS2PDF
printable_format = .pdf
@@ -71,5 +71,5 @@ SUFFIXES = .mm .ps .txt .html .pdf
.ps.pdf:
$(AM_V_GEN) $(PS2PDF) $< $@
-endif HAVE_GROFF
+endif HAVE_GROFF_MM
endif ENABLE_DOCS