diff options
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 6 |
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 |