summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-01-12 12:55:15 +1100
committerChris Johns <chrisj@rtems.org>2017-01-12 12:56:13 +1100
commit049097fc804b7f0b2fdf54b9ba6a0c2aeae17725 (patch)
treecc525b8b55cbb6fd4dd37ae03573e957429f2555 /wscript
parentconf.py: Fix build_date() to append correct suffix on all days. (diff)
downloadrtems-docs-049097fc804b7f0b2fdf54b9ba6a0c2aeae17725.tar.bz2
coverpage: Update the coverpage to have the table collapse.
Add each doc's conf.py as a dependence to catalogue.xml.
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/wscript b/wscript
index 955e68f..6b83a12 100644
--- a/wscript
+++ b/wscript
@@ -59,17 +59,17 @@ def build(ctx):
#
ctx(rule = catalogue,
target = 'catalogue.xml',
- source = ['wscript', 'common/waf.py'])
+ source = ['wscript', 'common/waf.py'] + ['%s/conf.py' % x for x in building])
ctx.install_files('${PREFIX}', 'catalogue.xml')
ctx(rule = coverpage_js,
target = 'coverpage.js',
- source = ['wscript', 'catalogue.xml', 'common/html-coverpage/coverpage.js'])
+ source = ['wscript', 'catalogue.xml', 'common/coverpage/coverpage.js'])
ctx.install_as('${PREFIX}/coverpage.js', 'coverpage.js')
#
# Install the static content.
#
- ctx.install_as('${PREFIX}/index.html', 'common/html-coverpage/coverpage.html')
- static_dir = ctx.path.find_dir('common/html-coverpage/static')
+ ctx.install_as('${PREFIX}/index.html', 'common/coverpage/coverpage.html')
+ static_dir = ctx.path.find_dir('common/coverpage/static')
ctx.install_files('${PREFIX}/static',
static_dir.ant_glob('**'),
cwd = static_dir,