utils.bbclass: remove the unused oe_system

The following functions in meta/classes/utils.bbclass were not
used by anyone, and they didn't work when I tried to use them:

def oe_popen_env(d):
def oe_run(d, cmd, **kwargs):
def oe_popen(d, cmd, **kwargs):
def oe_system(d, cmd, **kwargs):

There error was:
AttributeError: type object 'str' has no attribute 'getVar'

We have bitbake/lib/bb/process.py to instead, so remove them.

[YOCTO #2489]

(From OE-Core rev: 15ad62ab1be060d8a7cdc2d28167ea3af4cfd5d5)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Robert Yang 2012-05-24 16:03:26 +08:00 committed by Richard Purdie
parent bbd07d10e2
commit 70caf1e1bc
1 changed files with 0 additions and 26 deletions

View File

@ -58,32 +58,6 @@ def is_machine_specific(d):
if any(fetcher.localpath(url).startswith(mp + "/") for mp in machinepaths):
return True
def oe_popen_env(d):
env = d.getVar("__oe_popen_env", False)
if env is None:
env = {}
for v in d.keys():
if d.getVarFlag(v, "export"):
env[v] = d.getVar(v, True) or ""
d.setVar("__oe_popen_env", env)
return env
def oe_run(d, cmd, **kwargs):
import oe.process
kwargs["env"] = oe_popen_env(d)
return oe.process.run(cmd, **kwargs)
def oe_popen(d, cmd, **kwargs):
import oe.process
kwargs["env"] = oe_popen_env(d)
return oe.process.Popen(cmd, **kwargs)
def oe_system(d, cmd, **kwargs):
""" Popen based version of os.system. """
if not "shell" in kwargs:
kwargs["shell"] = True
return oe_popen(d, cmd, **kwargs).wait()
oe_soinstall() {
# Purpose: Install shared library file and
# create the necessary links