From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mail.openembedded.org (Postfix) with ESMTP id 539066FD36 for ; Tue, 10 Jun 2014 16:47:51 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id rd3so884899pab.41 for ; Tue, 10 Jun 2014 09:47:52 -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:in-reply-to:references; bh=kmuu/NYE0sep+AYYR/FLK6RYuNgY99hTsRli1p8i0hM=; b=TC3pGZrS80yRcV9DdIGyL5jp9oDagpxTKs07VKupsCjHdsUtEjwLvXx0/6ZeL4LfYa 5z+KAx6qfHOb8G06NhCmoH0nmaSuxCKrVDXmRF2gvfXwPyXWZlGTWXi0+NAvvjJsB5OD N54vVvadJZICgGL0LNcLbhSi3k9vtEcBWNeqv/shbfsmu3LCplKsdn/nIZ/q28KdKECN KrlOYAsao9QPZzxv5KZb6wgApacsNyW5jPlhiEnmNJTtJ0H0dgA1ANV4GYBEWrZPCfEZ yJCIothoogkXZTnsoXmPk5/nxDL7N2INtMbnR+Qv4vxqQNZ+Ld3PpElNRvQACwuDV/9b p+OQ== X-Received: by 10.66.231.237 with SMTP id tj13mr6788496pac.136.1402418872813; Tue, 10 Jun 2014 09:47:52 -0700 (PDT) Received: from gumstux.ashstix.com (adsl-172-15-162-30.dsl.pltn13.sbcglobal.net. [172.15.162.30]) by mx.google.com with ESMTPSA id qw8sm70412330pbb.27.2014.06.10.09.47.51 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 10 Jun 2014 09:47:52 -0700 (PDT) From: Ash Charles To: openembedded-devel@lists.openembedded.org Date: Tue, 10 Jun 2014 09:46:49 -0700 Message-Id: <1402418809-4593-1-git-send-email-ashcharles@gmail.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <20140610112216.GE2433@jama> References: <20140610112216.GE2433@jama> Subject: [Patch v2] 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: Tue, 10 Jun 2014 16:47:53 -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. v2: don't create directory if it already exists Upstream-Status: Pending Signed-off-by: Ash Charles Signed-off-by: Martin Jansa --- 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