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 D40C86A9DF for ; Mon, 10 Jun 2013 21:45:36 +0000 (UTC) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by azsmga102.ch.intel.com with ESMTP; 10 Jun 2013 14:45:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.87,840,1363158000"; d="scan'208";a="347788822" Received: from unknown (HELO swold-linux.bigsur.com) ([10.255.12.247]) by fmsmga001.fm.intel.com with ESMTP; 10 Jun 2013 14:45:43 -0700 From: Saul Wold To: openembedded-core@lists.openembedded.org Date: Mon, 10 Jun 2013 14:45:12 -0700 Message-Id: <1370900715-29294-3-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 2/5] createrepo: 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-support/createrepo/createrepo_0.4.11.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/createrepo/createrepo_0.4.11.bb b/meta/recipes-support/createrepo/createrepo_0.4.11.bb index c977c2e..4d71883 100644 --- a/meta/recipes-support/createrepo/createrepo_0.4.11.bb +++ b/meta/recipes-support/createrepo/createrepo_0.4.11.bb @@ -35,7 +35,7 @@ do_install_append_class-native () { for i in ${D}${datadir}/createrepo/genpkgmetadata.py \ ${D}${datadir}/createrepo/modifyrepo.py \ ${D}${bindir}/rpm-createsolvedb.py ; do - create_wrapper $i ${STAGING_BINDIR_NATIVE}/python-native/python + create_wrapper $i PATH=${STAGING_BINDIR_NATIVE}/python-native:\$PATH done create_wrapper ${D}/${bindir}/createrepo \ -- 1.8.1.4