From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga02.intel.com ([134.134.136.20]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1R1t6i-00032E-KG for openembedded-core@lists.openembedded.org; Fri, 09 Sep 2011 06:54:28 +0200 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 08 Sep 2011 21:49:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.67,352,1309762800"; d="scan'208";a="46672563" Received: from unknown (HELO [10.255.14.148]) ([10.255.14.148]) by orsmga001.jf.intel.com with ESMTP; 08 Sep 2011 21:49:22 -0700 Message-ID: <4E699AD2.9070602@linux.intel.com> Date: Thu, 08 Sep 2011 21:49:22 -0700 From: Saul Wold User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/20110816 Thunderbird/6.0 MIME-Version: 1.0 To: Patches and discussions about the oe-core layer References: In-Reply-To: Subject: Re: [PATCH 1/1] opensp: Fix hard path in native nsgmls. X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Sep 2011 04:54:28 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 09/08/2011 07:53 PM, edwin.zhai@intel.com wrote: > From: Zhai Edwin > > This relocation issues caused following bug and introduce one partial fix bb024d: > [YOCTO #1440] > > But the environment val hacking is not working all the time, as nsgmsl may > append wrong path in some case. This fix use search directory "-D" as solution. > It's better if got fixed from opensp side when next upgrade. > > Signed-off-by: Zhai Edwin > CC: Saul Would > --- > meta/recipes-devtools/opensp/opensp_1.5.bb | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/meta/recipes-devtools/opensp/opensp_1.5.bb b/meta/recipes-devtools/opensp/opensp_1.5.bb > index 0269c87..d692137 100644 > --- a/meta/recipes-devtools/opensp/opensp_1.5.bb > +++ b/meta/recipes-devtools/opensp/opensp_1.5.bb > @@ -44,8 +44,8 @@ do_install_append() { > > do_install_append_virtclass-native() { > for util in nsgmls sgmlnorm spam spcat spent sx; do > - create_wrapper ${D}/${bindir}/$util \ > - SGML_CATALOG_FILES=${sysconfdir}/sgml/catalog > + create_cmdline_wrapper ${D}/${bindir}/$util \ > + -D ${sysconfdir}/sgml > done > } > Have you tested this with iputils? When I tried this, it did not work correctly for me, can you give me more of idea of how you tested this. Sau!