aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarius Avram <marius.avram@intel.com>2014-03-11 18:37:06 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-21 13:51:08 +0000
commitdf9e22901555b06fef308f7136547f2c47ccec35 (patch)
tree9924fa2df9f5eda808440401ed62879a85c1d05c /lib
parent60969cd62e21e7d4af161bf8504b7643a879c73f (diff)
downloadbitbake-df9e22901555b06fef308f7136547f2c47ccec35.tar.gz
ConfHandlerr: Use full path in variable history
When an evaluation was made for a configuration file the path to the file was saved as a relative one. The change in this commit will save the location as an absolute path. This way the user will have full information regarding the location of the file where a variable was changed and the line withing the file. [YOCTO #5562] Signed-off-by: Marius Avram <marius.avram@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/parse/parse_py/ConfHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/parse/parse_py/ConfHandler.py b/lib/bb/parse/parse_py/ConfHandler.py
index f4fb2aa45..978ebe460 100644
--- a/lib/bb/parse/parse_py/ConfHandler.py
+++ b/lib/bb/parse/parse_py/ConfHandler.py
@@ -144,7 +144,7 @@ def handle(fn, data, include):
# skip comments
if s[0] == '#':
continue
- feeder(lineno, s, fn, statements)
+ feeder(lineno, s, abs_fn, statements)
# DONE WITH PARSING... time to evaluate
data.setVar('FILE', abs_fn)