[rtems-tools commit] Fix the chmod octal value to use the correct Python syntax.
Chris Johns
chrisj at rtems.org
Mon Feb 16 00:30:55 UTC 2015
Module: rtems-tools
Branch: master
Commit: e143a62f6bc4fbf01b37e3ad25025012a7a35b96
Changeset: http://git.rtems.org/rtems-tools/commit/?id=e143a62f6bc4fbf01b37e3ad25025012a7a35b96
Author: Chris Johns <chrisj at rtems.org>
Date: Mon Feb 16 11:27:18 2015 +1100
Fix the chmod octal value to use the correct Python syntax.
---
tester/wscript | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tester/wscript b/tester/wscript
index 1cd693f..0e170d6 100644
--- a/tester/wscript
+++ b/tester/wscript
@@ -66,8 +66,8 @@ def build(bld):
'rt/pygdb/mi_parser.py',
'rt/pygdb/spark.py'],
install_path = '${PREFIX}/share/rtems/rt/pygdb')
- bld.install_files('${PREFIX}/bin', ['rtems-test'], chmod = 0755)
- bld.install_files('${PREFIX}/bin', ['rtems-test'], chmod = 0755)
+ bld.install_files('${PREFIX}/bin', ['rtems-test'], chmod = 0o755)
+ bld.install_files('${PREFIX}/bin', ['rtems-test'], chmod = 0o755)
#
# Install the tester configuration files.
More information about the vc
mailing list