All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-xfce][PATCH] xfce4-notifyd: Ensure xfce4-notifyd subdirectory exists
@ 2014-05-26 17:59 Ash Charles
  2014-06-10 11:22 ` Martin Jansa
  0 siblings, 1 reply; 3+ messages in thread
From: Ash Charles @ 2014-05-26 17:59 UTC (permalink / raw)
  To: openembedded-devel

The notify-dbus.h file is autogenerated during compilation into the
xfce4-notifyd subdirectory.  This directory doesn't exist in an
out-of-tree build so we add one manually.

Upstream-Status: Pending

Signed-off-by: Ash Charles <ashcharles@gmail.com>
---
 meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
index 08af66d..c22423c 100644
--- a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
+++ b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
@@ -7,6 +7,10 @@ DEPENDS = "libxfce4util libxfce4ui xfconf gtk+ dbus dbus-glib"
 
 inherit xfce-app
 
+do_compile_prepend() {
+	mkdir xfce4-notifyd
+}
+
 FILES_${PN} += " \
     ${libdir}/xfce4/notifyd \
     ${datadir}/themes \
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [meta-xfce][PATCH] xfce4-notifyd: Ensure xfce4-notifyd subdirectory exists
  2014-05-26 17:59 [meta-xfce][PATCH] xfce4-notifyd: Ensure xfce4-notifyd subdirectory exists Ash Charles
@ 2014-06-10 11:22 ` Martin Jansa
  2014-06-10 16:46   ` [Patch v2] " Ash Charles
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2014-06-10 11:22 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2203 bytes --]

On Mon, May 26, 2014 at 10:59:50AM -0700, Ash Charles wrote:
> The notify-dbus.h file is autogenerated during compilation into the
> xfce4-notifyd subdirectory.  This directory doesn't exist in an
> out-of-tree build so we add one manually.

Same as screenshooter:

ERROR: Logfile of failure stored in: /home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/core2-64-oe-linux/xfce4-notifyd/0.2.2-r0/temp/log.do_compile.1277
Log data follows:
| DEBUG: SITE files ['endian-little', 'common-linux', 'common-glibc', 'bit-64', 'x86_64-linux', 'common']
| DEBUG: Executing shell function do_compile
| mkdir: cannot create directory `xfce4-notifyd': File exists
| WARNING: exit code 1 from a shell command.
| ERROR: Function failed: do_compile (log file is located at /home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/work/core2-64-oe-linux/xfce4-notifyd/0.2.2-r0/temp/log.do_compile.1277)
NOTE: recipe xfce4-notifyd-0.2.2-r0: task do_compile: Failed
ERROR: Task 20 (/home/jenkins/oe/shr-core-branches/shr-core/meta-openembedded/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb, do_compile) failed 

> 
> Upstream-Status: Pending
> 
> Signed-off-by: Ash Charles <ashcharles@gmail.com>
> ---
>  meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
> index 08af66d..c22423c 100644
> --- a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
> +++ b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
> @@ -7,6 +7,10 @@ DEPENDS = "libxfce4util libxfce4ui xfconf gtk+ dbus dbus-glib"
>  
>  inherit xfce-app
>  
> +do_compile_prepend() {
> +	mkdir xfce4-notifyd
> +}
> +
>  FILES_${PN} += " \
>      ${libdir}/xfce4/notifyd \
>      ${datadir}/themes \
> -- 
> 1.8.3.2
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Patch v2] xfce4-notifyd: Ensure xfce4-notifyd subdirectory exists
  2014-06-10 11:22 ` Martin Jansa
@ 2014-06-10 16:46   ` Ash Charles
  0 siblings, 0 replies; 3+ messages in thread
From: Ash Charles @ 2014-06-10 16:46 UTC (permalink / raw)
  To: openembedded-devel

The notify-dbus.h file is autogenerated during compilation into the
xfce4-notifyd subdirectory.  This directory doesn't exist in an
out-of-tree build so we add one manually.

v2: don't create directory if it already exists

Upstream-Status: Pending

Signed-off-by: Ash Charles <ashcharles@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
index 08af66d..eb554ce 100644
--- a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
+++ b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
@@ -7,6 +7,10 @@ DEPENDS = "libxfce4util libxfce4ui xfconf gtk+ dbus dbus-glib"
 
 inherit xfce-app
 
+do_compile_prepend() {
+	mkdir -p xfce4-notifyd
+}
+
 FILES_${PN} += " \
     ${libdir}/xfce4/notifyd \
     ${datadir}/themes \
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-06-10 16:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-26 17:59 [meta-xfce][PATCH] xfce4-notifyd: Ensure xfce4-notifyd subdirectory exists Ash Charles
2014-06-10 11:22 ` Martin Jansa
2014-06-10 16:46   ` [Patch v2] " Ash Charles

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.