diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-17 09:52:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-17 10:01:30 +0100 |
commit | d0be4b37743492fc9c178fd6f9ef73a5eb2fd9c3 (patch) | |
tree | e2a79781e32b4f64bb0c464cdd781c5981fcb451 | |
parent | 1f7d22ce9322b960c89afd3673ace9f0d937b2a6 (diff) | |
download | openembedded-core-d0be4b37743492fc9c178fd6f9ef73a5eb2fd9c3.tar.gz openembedded-core-d0be4b37743492fc9c178fd6f9ef73a5eb2fd9c3.tar.bz2 openembedded-core-d0be4b37743492fc9c178fd6f9ef73a5eb2fd9c3.zip |
chrpath: Drop warning from darwn builds
This was old debug which can safely be removed for less noisy builds.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/chrpath.bbclass | 1 |
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): continue newpath = "@loader_path/" + os.path.relpath(rpath, os.path.dirname(fpath.replace(rootdir, "/"))) - bb.warn("%s %s %s %s" % (fpath, rpath, newpath, rootdir)) p = sub.Popen([d.expand("${HOST_PREFIX}install_name_tool"), '-change', rpath, newpath, fpath],stdout=sub.PIPE,stderr=sub.PIPE) err, out = p.communicate() |