summaryrefslogtreecommitdiffstats
path: root/meta/classes/uninative.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/uninative.bbclass')
-rw-r--r--meta/classes/uninative.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass
index d3208e71a9..b045a2818b 100644
--- a/meta/classes/uninative.bbclass
+++ b/meta/classes/uninative.bbclass
@@ -130,7 +130,8 @@ python uninative_changeinterp () {
130 130
131 try: 131 try:
132 subprocess.check_output(("patchelf-uninative", "--set-interpreter", 132 subprocess.check_output(("patchelf-uninative", "--set-interpreter",
133 d.getVar("UNINATIVE_LOADER", True), f)) 133 d.getVar("UNINATIVE_LOADER", True), f),
134 stderr=subprocess.STDOUT)
134 except subprocess.CalledProcessError as e: 135 except subprocess.CalledProcessError as e:
135 bb.fatal("'%s' failed with exit code %d and the following output:\n%s" % 136 bb.fatal("'%s' failed with exit code %d and the following output:\n%s" %
136 (e.cmd, e.returncode, e.output)) 137 (e.cmd, e.returncode, e.output))