diff options
author | Gary Oberbrunner <garyo@oberbrunner.com> | 2012-08-12 17:26:52 (GMT) |
---|---|---|
committer | Gary Oberbrunner <garyo@oberbrunner.com> | 2012-08-12 17:26:52 (GMT) |
commit | 8a4cdff25c3e2f765c288bc7ef749343ccb7ff4a (patch) | |
tree | e47a837414eb9568e8b8f706a7f28acedcf518b3 /doc/SConscript | |
parent | 48c247284e665914331bae8bdd13edb6df95e8b3 (diff) | |
download | SCons-8a4cdff25c3e2f765c288bc7ef749343ccb7ff4a.zip SCons-8a4cdff25c3e2f765c288bc7ef749343ccb7ff4a.tar.gz SCons-8a4cdff25c3e2f765c288bc7ef749343ccb7ff4a.tar.bz2 |
Warn during doc build if missing tools
Diffstat (limited to 'doc/SConscript')
-rw-r--r-- | doc/SConscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/SConscript b/doc/SConscript index faa0af2..9bf40bc 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -436,6 +436,8 @@ for man_1 in man_page_list: tar_deps.extend([ps, text]) tar_list.extend([ps, text]) + else: + print "doc: WARNING: no groff, skipping text and PostScript versions of man pages" if man2html: html = os.path.join(build, 'HTML' , '%s-man.html' % man) @@ -460,6 +462,8 @@ for man_1 in man_page_list: tar_deps.append(html) tar_list.append(html) + else: + print "doc: WARNING: no man2html, skipping HTML versions of man pages" if not epydoc_cli: try: |