[oe-commits] [meta-openembedded] 05/11: mozjs_17.0.0.bb: Fix do_srpm error

git at git.openembedded.org git at git.openembedded.org
Tue Apr 26 13:30:46 UTC 2016


martin_jansa pushed a commit to branch master-next
in repository meta-openembedded.

commit f7cd054f9c627af8d9c8ee128624c7481f31a753
Author: Li xin <lixin.fnst at cn.fujitsu.com>
AuthorDate: Tue Apr 26 10:56:05 2016 +0300

    mozjs_17.0.0.bb: Fix do_srpm error
    
    The function do_sourceclean() will lead to do_srpm failed, so use
    do_unpack instead.
    
    Signed-off-by: Li Xin <lixin.fnst at cn.fujitsu.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb b/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb
index cab6dd5..da05789 100644
--- a/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb
+++ b/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb
@@ -53,17 +53,11 @@ do_configure() {
 }
 
 # patch.bbclass will try to apply the patches already present and fail, so clean them out
-do_sourceclean() {
-    (
-    cd ${WORKDIR}/${BPN}${PV}/patches
-    for i in $(cat series | awk '{print $1}') ; do
-        rm -f $i
-    done
-    rm -f series
-    )
+do_unpack() {
+    tar -xvf ${DL_DIR}/mozjs17.0.0.tar.gz -C ${WORKDIR}/
+    rm -rf ${WORKDIR}/${BPN}${PV}/patches
 }
 
-addtask sourceclean before do_patch after do_unpack
 
 PACKAGES =+ "lib${PN}"
 FILES_lib${PN} += "${libdir}/lib*.so"

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


More information about the Openembedded-commits mailing list