From 2f922357287129f7d216393531886ed1f3ce8185 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 5 May 2014 09:05:20 +0100 Subject: cleanup-workdir: Fix crosssdk reference after addition of PN Signed-off-by: Richard Purdie --- scripts/cleanup-workdir | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'scripts/cleanup-workdir') diff --git a/scripts/cleanup-workdir b/scripts/cleanup-workdir index 25fef976b6..a7f5a3a667 100755 --- a/scripts/cleanup-workdir +++ b/scripts/cleanup-workdir @@ -50,8 +50,12 @@ def run_command(cmd): def get_cur_arch_dirs(workdir, arch_dirs): pattern = workdir + '/(.*?)/' + cmd = "bitbake -e | grep ^SDK_ARCH=" + output = run_command(cmd) + sdk_arch = output.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-' + sdk_arch, 'nativesdk-autoconf'] for pkg in pkgs: cmd = "bitbake -e " + pkg + " | grep ^IMAGE_ROOTFS=" -- cgit 1.2.3-korg