From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [143.182.124.37]) by mail.openembedded.org (Postfix) with ESMTP id E5E5B6A945 for ; Mon, 10 Jun 2013 21:45:35 +0000 (UTC) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by azsmga102.ch.intel.com with ESMTP; 10 Jun 2013 14:45:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.87,840,1363158000"; d="scan'208";a="347788829" Received: from unknown (HELO swold-linux.bigsur.com) ([10.255.12.247]) by fmsmga001.fm.intel.com with ESMTP; 10 Jun 2013 14:45:44 -0700 From: Saul Wold To: openembedded-core@lists.openembedded.org Date: Mon, 10 Jun 2013 14:45:14 -0700 Message-Id: <1370900715-29294-5-git-send-email-sgw@linux.intel.com> X-Mailer: git-send-email 1.8.1.4 In-Reply-To: <1370900715-29294-1-git-send-email-sgw@linux.intel.com> References: <1370900715-29294-1-git-send-email-sgw@linux.intel.com> Subject: [PATCH 4/5] gnome-doc-utils: Fix usage of create_wrapper X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 21:45:37 -0000 create_wrapper changed recently and behaves differently now. It does not directly exec the , but exports them, so the first parameter needs to be an environemnt variable like a PATH, not a executable. Signed-off-by: Saul Wold --- meta/recipes-gnome/gnome/gnome-doc-utils.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils.inc b/meta/recipes-gnome/gnome/gnome-doc-utils.inc index 9d243a1..3eaebe3 100644 --- a/meta/recipes-gnome/gnome/gnome-doc-utils.inc +++ b/meta/recipes-gnome/gnome/gnome-doc-utils.inc @@ -20,7 +20,7 @@ do_install_append() { } do_install_append_class-native () { - create_wrapper ${D}${bindir}/xml2po ${STAGING_BINDIR_NATIVE}/python-native/python + create_wrapper ${D}${bindir}/xml2po PATH=${STAGING_BINDIR_NATIVE}/python-native:\$PATH } FILES_${PN} += "${datadir}/xml* ${PYTHON_SITEPACKAGES_DIR}/*" -- 1.8.1.4