From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f42.google.com (unknown [209.85.220.42]) by mail.openembedded.org (Postfix) with ESMTP id C845865D70 for ; Mon, 26 May 2014 18:00:03 +0000 (UTC) Received: by mail-pa0-f42.google.com with SMTP id rd3so7892994pab.15 for ; Mon, 26 May 2014 11:00:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=/4UCFhmVQuiEte/ZdUb8uJoczet8gBstJYU7GZQcLLo=; b=HcEiXxplCpRr5ExC8N8s3yiJPKxMKjPpT714DWIAmcbZMi40X+FQkFaCSC/gaaXbD1 GxE0VRS3wrUuJyEoyqshSl5nUZeJfnHp0Ls5YEG5xG8L0OvalTKpB2JhB3bou23pwQ/n 2rJT0UX5781KlbR36maVUaIt2c5TjLFvL3Sas6CnA4SmmuoPQODhZ7orAN6DT3aPVPcq fxFu8o2wYCVJcMZ6SonAiu5mOBW0HPoP2ptOneea2YnH6yaEAMhBgGpnF4js1l/Tm+FJ g6kx4OxL+ab9ZQNSnxMjasVX+bOSBQUzC+0g4+ep111J5o9oMHsL2VtAsEUq1zDiXGcu uxLQ== X-Received: by 10.66.122.208 with SMTP id lu16mr28415856pab.129.1401127205029; Mon, 26 May 2014 11:00:05 -0700 (PDT) Received: from gumstux.bchsia.telus.net (s206-116-3-18.bc.hsia.telus.net. [206.116.3.18]) by mx.google.com with ESMTPSA id ir10sm19304073pbc.59.2014.05.26.11.00.04 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 26 May 2014 11:00:04 -0700 (PDT) From: Ash Charles To: openembedded-devel@lists.openembedded.org Date: Mon, 26 May 2014 10:59:50 -0700 Message-Id: <1401127190-1532-1-git-send-email-ashcharles@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [meta-xfce][PATCH] xfce4-notifyd: Ensure xfce4-notifyd subdirectory exists X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2014 18:00:04 -0000 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 --- 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