diff options
author | Tobias Markmann <tm@ayena.de> | 2018-02-07 15:11:00 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2018-02-09 16:29:58 (GMT) |
commit | d29e1624e38b528a7ae0e4cba83e4a790102aa8d (patch) | |
tree | 3a2d1d250e0d6e7fd731aa15522d2525f151e3ea /BuildTools | |
parent | e2048d327800f93d6d5b647a7b0c2ff2abc5e93b (diff) | |
download | swift-d29e1624e38b528a7ae0e4cba83e4a790102aa8d.zip swift-d29e1624e38b528a7ae0e4cba83e4a790102aa8d.tar.bz2 |
Move man page generation from package.sh to scons
Pass help2man=1 to have scons build man page sources via
help2man.
Adjusted package.sh to use scons to build man pages.
Test-Information:
Tested on Ubuntu 16.04 and it generated man page sources
when help2man=1.
Tested package_all_platforms on Ubuntu 16.04. The build does
not fail due to missing man pages anymore.
Change-Id: I6c62bc3f666ffd9f926038045672eb6e456082e5
Diffstat (limited to 'BuildTools')
-rw-r--r-- | BuildTools/SCons/SConscript.boot | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/BuildTools/SCons/SConscript.boot b/BuildTools/SCons/SConscript.boot index d9678a5..3b21dde 100644 --- a/BuildTools/SCons/SConscript.boot +++ b/BuildTools/SCons/SConscript.boot @@ -111,6 +111,7 @@ vars.Add(BoolVariable("unbound", "Build bundled ldns and unbound. Use them for D vars.Add(BoolVariable("check_headers", "Independently build compilation units for all Swiften headers for detecting missing dependencies.", "no")) vars.Add("win_target_arch", "Target architecture for Windows builds. x86 for 32-bit (default) or x86_64 for 64-bit.", "x86") vars.Add(BoolVariable("install_git_hooks", "Install git hooks", "true")) +vars.Add(BoolVariable("help2man", "Run help2man to geneate man pages", "false")) # Code Signing Options vars.Add("codesign_identity", "macOS code signing identity to be passed to codesign when building the distribution package. Must match the Commen Name of the Subject of the code signing certificate.", "") |