summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/patch.py4
-rw-r--r--meta/lib/oe/utils.py10
2 files changed, 12 insertions, 2 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py
index 8de73a7037..244f6c5cf2 100644
--- a/meta/lib/oe/patch.py
+++ b/meta/lib/oe/patch.py
@@ -17,7 +17,7 @@ class CmdError(bb.BBHandledException):
17 17
18 18
19def runcmd(args, dir = None): 19def runcmd(args, dir = None):
20 import subprocess, pipes 20 import pipes
21 21
22 if dir: 22 if dir:
23 olddir = os.path.abspath(os.curdir) 23 olddir = os.path.abspath(os.curdir)
@@ -30,7 +30,7 @@ def runcmd(args, dir = None):
30 args = [ pipes.quote(str(arg)) for arg in args ] 30 args = [ pipes.quote(str(arg)) for arg in args ]
31 cmd = " ".join(args) 31 cmd = " ".join(args)
32 # print("cmd: %s" % cmd) 32 # print("cmd: %s" % cmd)
33 (exitstatus, output) = subprocess.getstatusoutput(cmd) 33 (exitstatus, output) = oe.utils.getstatusoutput(cmd)
34 if exitstatus != 0: 34 if exitstatus != 0:
35 raise CmdError(exitstatus >> 8, output) 35 raise CmdError(exitstatus >> 8, output)
36 return output 36 return output
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
index ed9409613a..ec8260d9bd 100644
--- a/meta/lib/oe/utils.py
+++ b/meta/lib/oe/utils.py
@@ -1,3 +1,10 @@
1try:
2 # Python 2
3 import commands as cmdstatus
4except ImportError:
5 # Python 3
6 import subprocess as cmdstatus
7
1def read_file(filename): 8def read_file(filename):
2 try: 9 try:
3 f = file( filename, "r" ) 10 f = file( filename, "r" )
@@ -123,3 +130,6 @@ def packages_filter_out_system(d):
123 if pkg not in blacklist and localepkg not in pkg: 130 if pkg not in blacklist and localepkg not in pkg:
124 pkgs.append(pkg) 131 pkgs.append(pkg)
125 return pkgs 132 return pkgs
133
134def getstatusoutput(cmd):
135 return cmdstatus.getstatusoutput(cmd)