diff options
author | Jack Mitchell <jack.mitchell@dbbroadcast.co.uk> | 2012-09-04 17:12:55 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-04 18:03:18 +0100 |
commit | 15111f4ba09d8cdcaf9e8066d77f4d27e5f2d5fa (patch) | |
tree | b973104bd920ebc1424fab3ff4f2fb0e83e08464 /scripts/cleanup-workdir | |
parent | fc1cbc17e2b77c457130f4a11ed1fe7803807b49 (diff) | |
download | poky-15111f4ba09d8cdcaf9e8066d77f4d27e5f2d5fa.tar.gz |
scripts/cleanup-workdir: change autoconf-nativesdk to nativesdk-autoconf
the autoconf-nativesdk package name was recently changed to nativesdk-autoconf which in turn broke the cleanup-workdir script. Changed the package to the correct name.
(From OE-Core rev: 0df6904f8050c4305d90d9bb4c9cac279508d9ca)
Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/cleanup-workdir')
-rwxr-xr-x | scripts/cleanup-workdir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cleanup-workdir b/scripts/cleanup-workdir index c748846d7c..9d161c24d1 100755 --- a/scripts/cleanup-workdir +++ b/scripts/cleanup-workdir | |||
@@ -51,7 +51,7 @@ def get_cur_arch_dirs(workdir, arch_dirs): | |||
51 | pattern = workdir + '/(.*?)/' | 51 | pattern = workdir + '/(.*?)/' |
52 | 52 | ||
53 | # select thest 5 packages to get the dirs of current arch | 53 | # select thest 5 packages to get the dirs of current arch |
54 | pkgs = ['hicolor-icon-theme', 'base-files', 'acl-native', 'binutils-crosssdk', 'autoconf-nativesdk'] | 54 | pkgs = ['hicolor-icon-theme', 'base-files', 'acl-native', 'binutils-crosssdk', 'nativesdk-autoconf'] |
55 | 55 | ||
56 | for pkg in pkgs: | 56 | for pkg in pkgs: |
57 | cmd = "bitbake -e " + pkg + " | grep ^IMAGE_ROOTFS=" | 57 | cmd = "bitbake -e " + pkg + " | grep ^IMAGE_ROOTFS=" |