[oe-commits] [meta-openembedded] 12/14: xfce4-screenshooter: fix parallel build issue

git at git.openembedded.org git at git.openembedded.org
Sun May 6 20:25:41 UTC 2018


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

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

commit 471995f6b3b5ae8349afc621c5815dd79539629f
Author: Hongxu Jia <hongxu.jia at windriver.com>
AuthorDate: Wed Apr 18 17:07:09 2018 +0800

    xfce4-screenshooter: fix parallel build issue
    
    While do an out-of-tree build, if dir panel-plugin is not created
    in time, there is a compile failure:
    ...
    | intltool-merge  -d -u -c ./po/.intltool-merge-cache ../xfce4-screenshooter-1.9.1/po
    ../xfce4-screenshooter-1.9.1/panel-plugin/screenshooter.desktop.in
    panel-plugin/screenshooter.desktop
    | Died at intltool-merge line 1184, <PO_FILE> line 22700.
    ...
    Ensure panel-plugin subdirectory exists fixes the issue.
    
    The fix refers the following commit:
    ...
    commit 754754b53bbf4c72d7855e9209f1ccecce5cd8dd
    Author: Catalin Enache <catalin.enache at windriver.com>
    Date:   Thu Nov 9 11:12:29 2017 +0800
    
        xfce4-screenshooter: create src dir before build
    ...
    
    Signed-off-by: Hongxu Jia <hongxu.jia at windriver.com>
    Acked-by: Andreas Müller <schnitzeltony at google.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.1.bb b/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.1.bb
index e449dce..6702d73 100644
--- a/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.1.bb
+++ b/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.1.bb
@@ -12,7 +12,7 @@ SRC_URI[sha256sum] = "e62b31d9cf06a7414a26400c2ebe7a2ae7c2b22aa60f997f25145ea9eb
 
 do_compile_prepend() {
     mkdir -p lib
-    mkdir -p src
+    mkdir -p src panel-plugin
 }
 
 FILES_${PN} += " \

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


More information about the Openembedded-commits mailing list