[oe-commits] [meta-openembedded] 32/43: netcat-openbsd: fix netcat_do_patch problem

git at git.openembedded.org git at git.openembedded.org
Mon Aug 13 06:25:00 UTC 2018


This is an automated email from the git hooks/post-receive script.

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

commit 96699be966796805e9811ecf906b7493fa97c132
Author: Changqing Li <changqing.li at windriver.com>
AuthorDate: Tue Aug 7 16:16:25 2018 +0800

    netcat-openbsd: fix netcat_do_patch problem
    
    ${S}/debian should not be deleted after pop the patch,
    or we will met error when run below push patch command
    since no debian folder found.
    
    QUILT_PATCHES=${S}/debian/patches quilt push -a
    
    Signed-off-by: Changqing Li <changqing.li at windriver.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-networking/recipes-support/netcat/netcat-openbsd_1.190.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-support/netcat/netcat-openbsd_1.190.bb b/meta-networking/recipes-support/netcat/netcat-openbsd_1.190.bb
index b4802fa..74f5c9f 100644
--- a/meta-networking/recipes-support/netcat/netcat-openbsd_1.190.bb
+++ b/meta-networking/recipes-support/netcat/netcat-openbsd_1.190.bb
@@ -30,7 +30,7 @@ netcat_do_patch() {
             rm -rf ${S}/.pc
             mv ${S}/.pc-netcat ${S}/.pc
             QUILT_PATCHES=${S}/debian/patches quilt pop -a
-            rm -rf ${S}/.pc ${S}/debian
+            rm -rf ${S}/.pc
     fi
     QUILT_PATCHES=${S}/debian/patches quilt push -a
     mv ${S}/.pc ${S}/.pc-netcat

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


More information about the Openembedded-commits mailing list