diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-10-04 00:14:10 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-10-04 00:14:10 (GMT) |
commit | de3ebf6b0f53cf32991f548caf6401f20a2eb05e (patch) | |
tree | 6cbe93d7f7096a0ff7a20a8b18cccdf61fc298fc /doc | |
parent | 56080b1c09eb9659419c5ada7c0a888fc048822c (diff) | |
download | SCons-de3ebf6b0f53cf32991f548caf6401f20a2eb05e.zip SCons-de3ebf6b0f53cf32991f548caf6401f20a2eb05e.tar.gz SCons-de3ebf6b0f53cf32991f548caf6401f20a2eb05e.tar.bz2 |
Simplify main SConstruct. Remove deb and rpm and win executable package creation as we're moving to pip install being the main install path.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/SConscript b/doc/SConscript index 7e6aaeb..82b29a6 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -63,6 +63,7 @@ env = env.Clone() build = os.path.join(build_dir, 'doc') + epydoc_cli = whereis('epydoc') gs = whereis('gs') lynx = whereis('lynx') @@ -586,7 +587,7 @@ else: tar_deps.append(htmldir) tar_list.append(htmldir) - if not epydoc_cli: + if sys.platform == 'darwin' or not epydoc_cli: print("doc: command line epydoc is not found, skipping PDF/PS/Tex output") else: # PDF and PostScript and TeX are built from the |