aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2011-03-23 13:31:51 -0700
committerGraydon Hoare <[email protected]>2011-03-23 13:33:15 -0700
commitf740747ea561290b997e09315767bd791192e01e (patch)
tree0c21f01dbd7d60689da6c4fa920adb74ddc5787d /Makefile.in
parentSomeday I'll have a talk with the person who thought backslashes were wise in... (diff)
downloadrust-f740747ea561290b997e09315767bd791192e01e.tar.xz
rust-f740747ea561290b997e09315767bd791192e01e.zip
Guard texi2pdf on tex probe as well. OSX package systems are real permissive.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 932e2dd8..1f2284d1 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -185,7 +185,11 @@ endif
ifeq ($(CFG_TEXI2PDF),)
$(info cfg: no texi2pdf found, omitting doc/rust.pdf)
else
- DOCS += doc/rust.pdf
+ ifeq ($(CFG_TEX),)
+ $(info cfg: no tex found, omitting doc/rust.pdf)
+ else
+ DOCS += doc/rust.pdf
+ endif
endif