Install missing files

This commit is contained in:
Sebastian Huber
2017-10-10 20:07:15 +02:00
parent 662e1f7d9a
commit 5df7c3cd51
2 changed files with 15 additions and 1 deletions

View File

@@ -143,6 +143,7 @@ def build(bld):
'mailer.py',
'options.py',
'path.py',
'reraise.py',
'stacktraces.py',
'textbox.py',
'version.py',

View File

@@ -60,7 +60,9 @@ def build(bld):
'rt/options.py',
'rt/report.py',
'rt/stty.py',
'rt/test.py'],
'rt/telnet.py',
'rt/test.py',
'rt/tftp.py'],
install_from = '.',
install_path = '${PREFIX}/share/rtems/tester')
bld(features = 'py',
@@ -69,6 +71,17 @@ def build(bld):
'rt/pygdb/spark.py'],
install_from = '.',
install_path = '${PREFIX}/share/rtems/tester')
bld(features = 'py',
source = ['rt/tftpy/__init__.py',
'rt/tftpy/TftpClient.py',
'rt/tftpy/TftpContexts.py',
'rt/tftpy/TftpPacketFactory.py',
'rt/tftpy/TftpPacketTypes.py',
'rt/tftpy/TftpServer.py',
'rt/tftpy/TftpShared.py',
'rt/tftpy/TftpStates.py'],
install_from = '.',
install_path = '${PREFIX}/share/rtems/tester')
bld.install_files('${PREFIX}/bin',
['rtems-test',
'rtems-bsp-builder'],