summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-04-12 21:36:17 +0000
committerChris Larson <clarson@kergoth.com>2004-04-12 21:36:17 +0000
commit6e488be4fb668457e10033b606f904db93331cee (patch)
tree39f44e8cb3b28d66e80bb9253d8d81d1502633f2
parent4e0e95b74f2f6f92ba65be2c90e3cebbc66425c1 (diff)
downloadbitbake-contrib-6e488be4fb668457e10033b606f904db93331cee.tar.gz
Adjust FILE handling; ensure .conf parsing sets it.
-rw-r--r--bin/oe/parse/OEHandler.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/oe/parse/OEHandler.py b/bin/oe/parse/OEHandler.py
index 6821e056b..66f829c24 100644
--- a/bin/oe/parse/OEHandler.py
+++ b/bin/oe/parse/OEHandler.py
@@ -60,8 +60,6 @@ def handle(fn, d = {}, include = 0):
init(d)
- oldfile = data.getVar('FILE', d)
-
fn = obtain(fn, d)
oepath = ['.']
if not os.path.isabs(fn):
@@ -139,8 +137,6 @@ def handle(fn, d = {}, include = 0):
pdeps.append(var)
data.setVarFlag(p, 'deps', pdeps, d)
oe.build.add_task(p, pdeps, d)
- if oldfile:
- data.setVar('FILE', oldfile, d)
return d
def feeder(lineno, s, fn, d):