diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2018-04-17 15:27:27 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-05-23 15:32:05 -0700 |
commit | acfc380d4e700d3cb0d355d3e8e9afdba181d050 (patch) | |
tree | fe227300cd899b5b960a26b49e136797837b152b /meta-xfce/recipes-apps | |
parent | 738058893693ca6df488c4428899983dcd336c13 (diff) | |
download | meta-openembedded-acfc380d4e700d3cb0d355d3e8e9afdba181d050.tar.gz |
xfce4-notifyd: fix parallel build issue
While do an out-of-tree build, if xfce4-notifyd-config is not created
in time, there is a compile failure:
...
|LC_ALL=C intltool-merge -d -u -c ./po/.intltool-merge-cache
../xfce4-notifyd-0.4.0/po ../xfce4-notifyd-0.4.0/xfce4-notifyd-config/
xfce4-notifyd-config.desktop.in xfce4-notifyd-config/xfce4-notifyd-config.desktop
|Died at intltool-merge line 1184.
...
Ensure xfce4-notifyd-config subdirectory exists fixes the issue.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Acked-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-xfce/recipes-apps')
-rw-r--r-- | meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.4.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.4.2.bb b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.4.2.bb index 54e702eed..15ec51b2b 100644 --- a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.4.2.bb +++ b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.4.2.bb | |||
@@ -23,7 +23,7 @@ SRC_URI[sha256sum] = "f6f28af47fdfb41db84bd003f0d76f5f4abf2137d1e27e9d378f063bb8 | |||
23 | EXTRA_OECONF = "--disable-dbus-start-daemon" | 23 | EXTRA_OECONF = "--disable-dbus-start-daemon" |
24 | 24 | ||
25 | do_compile_prepend() { | 25 | do_compile_prepend() { |
26 | mkdir -p xfce4-notifyd | 26 | mkdir -p xfce4-notifyd xfce4-notifyd-config |
27 | } | 27 | } |
28 | 28 | ||
29 | FILES_${PN} += " \ | 29 | FILES_${PN} += " \ |