summaryrefslogtreecommitdiff
path: root/doc/SConscript
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-07-21 16:42:26 +0000
committerSteven Knight <knight@baldmt.com>2010-07-21 16:42:26 +0000
commit532b1861d03c99d42e508d0561911ca38704a6ee (patch)
tree571c2f903cc940142c5abfc7a56ed48f4b547bdc /doc/SConscript
parente1bf2b982039811509aeff227f8a03c1aadb93b6 (diff)
downloadscons-532b1861d03c99d42e508d0561911ca38704a6ee.tar.gz
Move the authoritative source for functions from the man page to various
.xml files (some new, some updated) next to the modules that implement them. Generate the man page using the output generated from the .xml file by bin/scons-proc.py.
Diffstat (limited to 'doc/SConscript')
-rw-r--r--doc/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/SConscript b/doc/SConscript
index e22aec00..ffffe593 100644
--- a/doc/SConscript
+++ b/doc/SConscript
@@ -403,11 +403,11 @@ for m in man_page_list:
x = orig_env.SCons_revision(os.path.join(build, 'man', m),
os.path.join('man', m))
-man_i_files = ['builders.man', 'tools.man', 'variables.man']
+man_i_files = ['builders.man', 'functions.man', 'tools.man', 'variables.man']
man_intermediate_files = [os.path.join(build, 'man', x) for x in man_i_files]
-cmd = "$PYTHON $SCONS_PROC_PY --man -b ${TARGETS[0]} -t ${TARGETS[1]} -v ${TARGETS[2]} $( $SOURCES $)"
+cmd = "$PYTHON $SCONS_PROC_PY --man -b ${TARGETS[0]} -f ${TARGETS[1]} -t ${TARGETS[2]} -v ${TARGETS[3]} $( $SOURCES $)"
man_intermediate_files = env.Command(man_intermediate_files,
scons_doc_files,
cmd)