summaryrefslogtreecommitdiffstats
path: root/tester/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'tester/wscript')
-rw-r--r--tester/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/tester/wscript b/tester/wscript
index 56d0337..85dbd4a 100644
--- a/tester/wscript
+++ b/tester/wscript
@@ -42,8 +42,6 @@ def configure(conf):
recurse(conf)
conf.load('python')
conf.check_python_version((2,6,6))
- conf.env['PYO'] = 0
- conf.env['PYC'] = 0
def build(bld):
recurse(bld)
@@ -62,11 +60,13 @@ def build(bld):
'rt/stty.py',
'rt/test.py',
'rt/version.py'],
+ install_from = '.',
install_path = '${PREFIX}/share/rtems')
bld(features = 'py',
source = ['rt/pygdb/__init__.py',
'rt/pygdb/mi_parser.py',
'rt/pygdb/spark.py'],
+ install_from = '.',
install_path = '${PREFIX}/share/rtems')
bld.install_files('${PREFIX}/bin', ['rtems-test'], chmod = 0o755)