summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/options.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2013-05-17 12:52:22 +1000
committerChris Johns <chrisj@rtems.org>2013-05-17 12:52:22 +1000
commit54d142615c28e9fdf1ab03cea40ef2d7cd1ae2f1 (patch)
tree3c9950f8a8f2f8934fcd761f588cf8e37a06d87b /source-builder/sb/options.py
parentUpdate the buildset to use automake-1.12.6, which is required by rtems/config... (diff)
downloadrtems-source-builder-54d142615c28e9fdf1ab03cea40ef2d7cd1ae2f1.tar.bz2
Clean the paths passed as args.
Diffstat (limited to 'source-builder/sb/options.py')
-rw-r--r--source-builder/sb/options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source-builder/sb/options.py b/source-builder/sb/options.py
index 019f4ee..cf05935 100644
--- a/source-builder/sb/options.py
+++ b/source-builder/sb/options.py
@@ -114,7 +114,7 @@ class command_line:
def _lo_path(self, opt, macro, value):
if value is None:
raise error.general('option requires a path: %s' % (opt))
- value = path.shell(value)
+ value = path.abspath(value)
self.opts[opt[2:]] = value
self.defaults[macro] = value