aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMichael 'Mickey' Lauer <mickey@vanille-media.de>2004-07-25 10:32:17 +0000
committerMichael 'Mickey' Lauer <mickey@vanille-media.de>2004-07-25 10:32:17 +0000
commit374e997b2adecbe3b969fe63a14d65123972bb46 (patch)
treebe6bd9e6e0cd690b85ab890d3c9e663b26ed6c41 /bin
parent54d2db6dc040d43dc2f1ae54e7d9b21926baca87 (diff)
downloadbitbake-374e997b2adecbe3b969fe63a14d65123972bb46.tar.gz
receive tuple
Diffstat (limited to 'bin')
-rw-r--r--bin/oebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/oebuild b/bin/oebuild
index 2e9a4e7c7..1d0abe91a 100644
--- a/bin/oebuild
+++ b/bin/oebuild
@@ -86,7 +86,7 @@ elif len(args) == 1:
# 2) oebuild OEFILE
# First, see if this is a valid task.
try:
- oedata = oe.make.load_oefile(args[0])
+ oedata, cached = oe.make.load_oefile(args[0])
except Exception, e:
fatal("unable to read %s: %s" % (args[0], e))
if not oedata:
@@ -119,7 +119,7 @@ if not oefile:
try:
if not oedata:
- oedata = make.load_oefile(oefile)
+ oedata, cached = make.load_oefile(oefile)
if not oedata:
fatal("Unable to open %s" % oefile)