]> code.ossystems Code Review - openembedded-core.git/commitdiff
chrpath: Drop warning from darwn builds
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 17 Aug 2014 08:52:44 +0000 (09:52 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 17 Aug 2014 09:01:30 +0000 (10:01 +0100)
This was old debug which can safely be removed for less noisy builds.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/chrpath.bbclass

index 7765020e9879808975ac6df8e512239775c50a92..77b19372ba0913c0707fe2938ce3b170fb7896e1 100644 (file)
@@ -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()