summaryrefslogtreecommitdiffstats
path: root/rtemstoolkit
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2015-12-11 17:15:34 +1100
committerChris Johns <chrisj@rtems.org>2015-12-11 17:17:22 +1100
commita6f5f188ce61d586136c643125dfb857da64169f (patch)
tree25e2296f873bcb375ea979f515344b9a41b205e2 /rtemstoolkit
parentVERSION as an INI format file. (diff)
downloadrtems-tools-a6f5f188ce61d586136c643125dfb857da64169f.tar.bz2
Fix how to use the waf py feature to get py source and pyo file installed.
Thanks to ita for the example.
Diffstat (limited to 'rtemstoolkit')
-rw-r--r--rtemstoolkit/wscript5
1 files changed, 2 insertions, 3 deletions
diff --git a/rtemstoolkit/wscript b/rtemstoolkit/wscript
index 930f55a..4b31471 100644
--- a/rtemstoolkit/wscript
+++ b/rtemstoolkit/wscript
@@ -58,8 +58,6 @@ def configure(conf):
conf.load('python')
conf.check_python_version((2,6,6))
- conf.env['PYO'] = 0
- conf.env['PYC'] = 0
def build(bld):
#
@@ -155,7 +153,8 @@ def build(bld):
'stacktraces.py',
'version.py',
'windows.py'],
- install_path = '${PREFIX}/share/rtems')
+ install_from = '.',
+ install_path = '${PREFIX}/share/rtems/rtemstoolkit')
def rebuild(ctx):
import waflib.Options