[OE-core] [PATCH] scripts/cleanup-workdir: fix after binutils-cross name change
Stefan Stanacar
sstncr at gmail.com
Sun May 4 17:41:14 UTC 2014
Signed-off-by: Stefan Stanacar <sstncr at gmail.com>
---
scripts/cleanup-workdir | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/scripts/cleanup-workdir b/scripts/cleanup-workdir
index 25fef97..cffac59 100755
--- a/scripts/cleanup-workdir
+++ b/scripts/cleanup-workdir
@@ -49,9 +49,10 @@ def run_command(cmd):
def get_cur_arch_dirs(workdir, arch_dirs):
pattern = workdir + '/(.*?)/'
-
+ tunearch = run_command("bitbake -e | grep ^TUNE_ARCH=")
+ tunearch = tunearch.split('"')[1]
# select thest 5 packages to get the dirs of current arch
- pkgs = ['hicolor-icon-theme', 'base-files', 'acl-native', 'binutils-crosssdk', 'nativesdk-autoconf']
+ pkgs = ['hicolor-icon-theme', 'base-files', 'acl-native', 'binutils-crosssdk-' + tunearch, 'nativesdk-autoconf']
for pkg in pkgs:
cmd = "bitbake -e " + pkg + " | grep ^IMAGE_ROOTFS="
--
1.9.0
More information about the Openembedded-core
mailing list