summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
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,