[oe-commits] Mark Hatle : rootfs_rpm.bbclass: remove debug code

git at git.openembedded.org git at git.openembedded.org
Wed Dec 19 21:44:41 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: bbd55cc34ca893c7202634fe138cedb2f380be56
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=bbd55cc34ca893c7202634fe138cedb2f380be56

Author: Mark Hatle <mark.hatle at windriver.com>
Date:   Wed Dec 19 09:29:05 2012 -0600

rootfs_rpm.bbclass: remove debug code

Debugging code was accidently left in the previous commit.  Remove
the code as it prevents multiple concurrent bitbake builds.

Signed-off-by: Mark Hatle <mark.hatle at windriver.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/rootfs_rpm.bbclass |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass
index f40ee3b..f7e4c5e 100644
--- a/meta/classes/rootfs_rpm.bbclass
+++ b/meta/classes/rootfs_rpm.bbclass
@@ -153,11 +153,11 @@ RPM_QUERY_CMD = '${RPM} --root $INSTALL_ROOTFS_RPM -D "_dbpath ${rpmlibdir}"'
 
 list_installed_packages() {
 	if [ "$1" = "arch" ]; then
-		${RPM_QUERY_CMD} -qa --qf "[%{NAME} %{ARCH}\n]" | translate_smart_to_oe arch | tee /tmp/arch_list
+		${RPM_QUERY_CMD} -qa --qf "[%{NAME} %{ARCH}\n]" | translate_smart_to_oe arch
 	elif [ "$1" = "file" ]; then
-		${RPM_QUERY_CMD} -qa --qf "[%{NAME} %{ARCH} %{PACKAGEORIGIN}\n]" | translate_smart_to_oe | tee /tmp/file_list
+		${RPM_QUERY_CMD} -qa --qf "[%{NAME} %{ARCH} %{PACKAGEORIGIN}\n]" | translate_smart_to_oe
 	else
-		${RPM_QUERY_CMD} -qa --qf "[%{NAME} %{ARCH}\n]" | translate_smart_to_oe | tee /tmp/default_list
+		${RPM_QUERY_CMD} -qa --qf "[%{NAME} %{ARCH}\n]" | translate_smart_to_oe
 	fi
 }
 





More information about the Openembedded-commits mailing list