aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/package.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-03 17:09:26 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-06 13:12:19 +0000
commitd17329db4842c50af1a3d7f5f20e692c89913fba (patch)
tree6048cf5380765b98e532f1455e02820088981d7d /meta/classes/package.bbclass
parent72c1fd72d3b479c728e249eaa763116d352e945b (diff)
downloadopenembedded-core-d17329db4842c50af1a3d7f5f20e692c89913fba.tar.gz
package.bbclass: Fix up bb.mkdirhier/bb.copyfile usage
These are in bb.utils so lets the correct function and avoid the overhead of the fixup/warning for the deprecated usage. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r--meta/classes/package.bbclass14
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 8a4731be3c..679055ff1b 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -253,7 +253,7 @@ def splitdebuginfo(file, debugfile, debugsrcdir, d):
if debugsrcdir:
subprocess.call("'%s' -b '%s' -d '%s' -i -l '%s' '%s'" % (debugedit, workparentdir, debugsrcdir, sourcefile, file), shell=True)
- bb.mkdirhier(os.path.dirname(debugfile))
+ bb.utils.mkdirhier(os.path.dirname(debugfile))
subprocess.call("'%s' --only-keep-debug '%s' '%s'" % (objcopy, file, debugfile), shell=True)
@@ -287,7 +287,7 @@ def copydebugsources(debugsrcdir, d):
basepath = basepath + "/" + p
if not os.path.exists(basepath):
nosuchdir.append(basepath)
- bb.mkdirhier(basepath)
+ bb.utils.mkdirhier(basepath)
processdebugsrc = "LC_ALL=C ; sort -z -u '%s' | egrep -v -z '(<internal>|<built-in>)$' | "
# We need to ignore files that are not actually ours
@@ -644,7 +644,7 @@ python fixup_perms () {
continue
# Create path to move directory to, move it, and then setup the symlink
- bb.mkdirhier(os.path.dirname(target))
+ bb.utils.mkdirhier(os.path.dirname(target))
#bb.note("Fixup Perms: Rename %s -> %s" % (dir, ptarget))
os.rename(origin, target)
#bb.note("Fixup Perms: Link %s -> %s" % (dir, link))
@@ -891,7 +891,7 @@ python populate_packages () {
packages = d.getVar('PACKAGES', True)
pn = d.getVar('PN', True)
- bb.mkdirhier(outdir)
+ bb.utils.mkdirhier(outdir)
os.chdir(dvar)
# Sanity check PACKAGES for duplicates and for LICENSE_EXCLUSION
@@ -914,7 +914,7 @@ python populate_packages () {
for pkg in package_list:
root = os.path.join(pkgdest, pkg)
- bb.mkdirhier(root)
+ bb.utils.mkdirhier(root)
filesvar = d.getVar('FILES_%s' % pkg, True) or d.getVar('FILES', True) or ""
if "//" in filesvar:
@@ -945,7 +945,7 @@ python populate_packages () {
def mkdir(src, dest, p):
src = os.path.join(src, p)
dest = os.path.join(dest, p)
- bb.mkdirhier(dest)
+ bb.utils.mkdirhier(dest)
fstat = os.stat(src)
os.chmod(dest, fstat.st_mode)
os.chown(dest, fstat.st_uid, fstat.st_gid)
@@ -975,7 +975,7 @@ python populate_packages () {
os.chmod(fpath, fstat.st_mode)
os.chown(fpath, fstat.st_uid, fstat.st_gid)
continue
- ret = bb.copyfile(file, fpath)
+ ret = bb.utils.copyfile(file, fpath)
if ret is False or ret == 0:
raise bb.build.FuncFailed("File population failed")