summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2012-07-25 20:59:07 +1000
committerChris Johns <chrisj@rtems.org>2012-07-25 20:59:07 +1000
commit2bdef7efdaefe5a51264c6cc580cf5d695926e7d (patch)
treee582444090e7c2b2ff433b44e265296a10b6e73e /wscript
parenta21c3ff7432f3a17fece7217b94ece295e64bfa7 (diff)
Update to work with waf-1.7.0.
Diffstat (limited to 'wscript')
-rw-r--r--wscript14
1 files changed, 7 insertions, 7 deletions
diff --git a/wscript b/wscript
index 880639f..7584fa5 100644
--- a/wscript
+++ b/wscript
@@ -139,10 +139,10 @@ def rtl_gsyms(bld):
source = ['rtld-gsyms.c'],
depends_on = 'gsyms')
-import TaskGen
-TaskGen.declare_chain(name = 'html',
- rule = '${ASCIIDOC} ${ASCIIDOC_FLAGS} -o ${TGT} ${SRC}',
- shell = False,
- ext_in = '.txt',
- ext_out = '.html',
- reentrant = False)
+import waflib.TaskGen
+waflib.TaskGen.declare_chain(name = 'html',
+ rule = '${ASCIIDOC} ${ASCIIDOC_FLAGS} -o ${TGT} ${SRC}',
+ shell = False,
+ ext_in = '.txt',
+ ext_out = '.html',
+ reentrant = False)