From 54d142615c28e9fdf1ab03cea40ef2d7cd1ae2f1 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Fri, 17 May 2013 12:52:22 +1000 Subject: [PATCH] Clean the paths passed as args. --- source-builder/sb/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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