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

git at git.openembedded.org git at git.openembedded.org
Fri May 18 14:44:20 UTC 2018


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

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

commit d59b9806f743cea0168cddf942a31dcf446839e6
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.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.2.bb b/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.2.bb
index 554fc44..ba77127 100644
--- a/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.2.bb
+++ b/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.2.bb
@@ -12,7 +12,7 @@ SRC_URI[sha256sum] = "904f3a61417ace55a3b144187565335f8ad5e530ca23b397ce90ed6170
 
 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