summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-10-27 20:44:02 +0000
committerChris Larson <clarson@kergoth.com>2004-10-27 20:44:02 +0000
commit82bc6c7f2199b22c9db882fde5ffbb065aa03dc0 (patch)
treee2ff5e17038a283c953c84e6a0a5dfd466f3dd36
parent5c0dbde5161d9819a1e3e617cdd8ee71d31b0c7d (diff)
downloadbitbake-contrib-82bc6c7f2199b22c9db882fde5ffbb065aa03dc0.tar.gz
Make oeread suck a bit less.
-rw-r--r--bin/oeread4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/oeread b/bin/oeread
index d047e0b02..8b84b2140 100644
--- a/bin/oeread
+++ b/bin/oeread
@@ -20,7 +20,3 @@ oe.data.emit_env(sys.__stdout__, d, True)
for e in d.keys():
if oe.data.getVarFlag(e, 'python', d):
sys.__stdout__.write("\npython %s () {\n%s}\n" % (e, oe.data.getVar(e, d, 1)))
- elif oe.data.getVarFlag(e, 'func', d):
- sys.__stdout__.write("\n%s () {\n%s}\n" % (e, oe.data.getVar(e, d, 1)))
- else:
- sys.__stdout__.write("%s=%s\n" % (e, oe.data.getVar(e, d, 1)))