]> code.ossystems Code Review - openembedded-core.git/commitdiff
rootfs_rpm.bbclass: remove debug code
authorMark Hatle <mark.hatle@windriver.com>
Wed, 19 Dec 2012 15:29:05 +0000 (09:29 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 19 Dec 2012 21:43:50 +0000 (21:43 +0000)
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@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/rootfs_rpm.bbclass

index f40ee3be048c2447ecb9095ed6e7f89120e36085..f7e4c5ed2f07972ac31753503b5dbdd795bdc3f3 100644 (file)
@@ -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
 }