summaryrefslogtreecommitdiffstats
path: root/doc/SConscript
diff options
context:
space:
mode:
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 7617974..8316e6e 100644
--- a/doc/SConscript
+++ b/doc/SConscript
@@ -295,7 +295,7 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT.
]
if tidy:
cmds.append("tidy -m -q $TARGET || true")
- env.Command(htmlindex, main, cmds)
+ env.Command(htmlindex, File(main), cmds)
Local(htmlindex)
cmds = [
@@ -305,7 +305,7 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT.
]
if tidy:
cmds.append("tidy -m -q $TARGET || true")
- env.Command(html, main, cmds)
+ env.Command(html, File(main), cmds)
Local(html)
env.Ignore([html, htmlindex], version_sgml)