From: Richard Purdie Date: Mon, 23 Nov 2009 00:45:02 +0000 (+0000) Subject: package.bbclass: Make sure PKGD is empty before populating fixing certain bugs (from... X-Git-Tag: Release-2010-05/1~1648^2~33 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8581bc05f43d81179added7909e99d3afde1f447;p=openembedded.git package.bbclass: Make sure PKGD is empty before populating fixing certain bugs (from Poky) Signed-off-by: Richard Purdie --- diff --git a/classes/package.bbclass b/classes/package.bbclass index bb81f33b29..8892fa9084 100644 --- a/classes/package.bbclass +++ b/classes/package.bbclass @@ -334,6 +334,7 @@ python perform_packagecopy () { # Start by package population by taking a copy of the installed # files to operate on + os.system('rm -rf %s/*' % (dvar)) os.system('cp -pPR %s/* %s/' % (dest, dvar)) }