[oe-commits] [openembedded-core] 09/40: rpm: manually cleanup sysck

git at git.openembedded.org git at git.openembedded.org
Tue Sep 13 14:20:00 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 6c9f61233f64356291a0c42761a833f3b151114c
Author: Jérémy Rosen <jeremy.rosen at smile.fr>
AuthorDate: Wed Sep 7 11:08:48 2016 +0200

    rpm: manually cleanup sysck
    
    version 5.4.1 of rpm was not properly distclean before release, which
    causes problems when cross-compiling.
    
    The previous version this recipe called make distclean, but that would
    trigger a call to ./configure which would fail when no gcc is
    available and make the whole do_configure fail further down the line
    
    This patch manually removes the files from the recipe.
    
    Signed-off-by: Jérémy Rosen <jeremy.rosen at smile.fr>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-devtools/rpm/rpm_5.4.16.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/rpm/rpm_5.4.16.bb b/meta/recipes-devtools/rpm/rpm_5.4.16.bb
index 55acd25..9f78dee 100644
--- a/meta/recipes-devtools/rpm/rpm_5.4.16.bb
+++ b/meta/recipes-devtools/rpm/rpm_5.4.16.bb
@@ -527,7 +527,7 @@ do_configure() {
 	sed -e 's/pkg-config --exists uuid/pkg-config --exists ossp-uuid/g' \
 	    -e 's/pkg-config uuid/pkg-config ossp-uuid/g' -i ${S}/configure
 
-	( cd ${S}/syck ; set +e ; rm -- -l* ; make distclean ) || :
+	( cd ${S}/syck ; set +e ; rm -- -l* ; rm Makefile config.h config.status lib/Makefile libtool stamp-h1 tests/.deps tests/Makefile  ) || :
 
 	export varprefix=${localstatedir}
 	oe_runconf

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list