summaryrefslogtreecommitdiffstats
path: root/meta/classes/chrpath.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-17 09:52:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-17 10:01:36 +0100
commit59b0f7f01bbac6f1c10ee00382c5136d1f327960 (patch)
treed5d4e4738c030590a6991f73249a25fe5dd97072 /meta/classes/chrpath.bbclass
parentd42794cafb7e4612771eeef2547c7972bdfbda6c (diff)
downloadpoky-59b0f7f01bbac6f1c10ee00382c5136d1f327960.tar.gz
chrpath: Drop warning from darwn builds
This was old debug which can safely be removed for less noisy builds. (From OE-Core rev: d0be4b37743492fc9c178fd6f9ef73a5eb2fd9c3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/chrpath.bbclass')
-rw-r--r--meta/classes/chrpath.bbclass1
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes/chrpath.bbclass b/meta/classes/chrpath.bbclass
index 7765020e98..77b19372ba 100644
--- a/meta/classes/chrpath.bbclass
+++ b/meta/classes/chrpath.bbclass
@@ -54,7 +54,6 @@ def process_file_darwin(cmd, fpath, rootdir, baseprefix, tmpdir, d):
54 continue 54 continue
55 55
56 newpath = "@loader_path/" + os.path.relpath(rpath, os.path.dirname(fpath.replace(rootdir, "/"))) 56 newpath = "@loader_path/" + os.path.relpath(rpath, os.path.dirname(fpath.replace(rootdir, "/")))
57 bb.warn("%s %s %s %s" % (fpath, rpath, newpath, rootdir))
58 p = sub.Popen([d.expand("${HOST_PREFIX}install_name_tool"), '-change', rpath, newpath, fpath],stdout=sub.PIPE,stderr=sub.PIPE) 57 p = sub.Popen([d.expand("${HOST_PREFIX}install_name_tool"), '-change', rpath, newpath, fpath],stdout=sub.PIPE,stderr=sub.PIPE)
59 err, out = p.communicate() 58 err, out = p.communicate()
60 59