summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gdb/python/wscript')
-rw-r--r--tools/gdb/python/wscript34
1 files changed, 19 insertions, 15 deletions
diff --git a/tools/gdb/python/wscript b/tools/gdb/python/wscript
index 22d44e8..a7f428c 100644
--- a/tools/gdb/python/wscript
+++ b/tools/gdb/python/wscript
@@ -6,18 +6,22 @@ def configure(conf):
conf.load('python')
def build(bld):
- bld.install_files('${PREFIX}/share/gdb/python/rtems',
- ['chains.py',
- 'classic.py',
- 'classic_printer.py',
- 'heaps.py',
- 'helper.py',
- 'main.py',
- 'objects.py',
- 'pretty.py',
- 'rtems.py',
- 'sparc.py',
- 'supercore.py',
- 'supercore_printer.py',
- 'threads.py',
- 'watchdog.py'])
+ source = ['__init__.py',
+ 'chains.py',
+ 'classic.py',
+ 'classic_printer.py',
+ 'configuration.py',
+ 'heaps.py',
+ 'helper.py',
+ 'main.py',
+ 'objects.py',
+ 'percpu.py',
+ 'pretty.py',
+ 'rtems.py',
+ 'sparc.py',
+ 'supercore.py',
+ 'supercore_printer.py',
+ 'threads.py',
+ 'watchdog.py']
+ bld(features = 'py', source = source, install_path = None)
+ bld.install_files('${PREFIX}/share/gdb/python/rtems', source)