Message ID | 20190306054548.16430-6-raj.khem@gmail.com |
---|---|
State | New |
Headers | show |
Series | [oe,meta-oe,01/12] poco: Backport riscv support patch | expand |
On Tue, Mar 05, 2019 at 09:45:42PM -0800, Khem Raj wrote: > Signed-off-by: Khem Raj <raj.khem@gmail.com> > --- > .../recipes-connectivity/inetutils/inetutils_1.9.4.bb | 2 ++ >... This recipe moved to OE-core. cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed -- _______________________________________________ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
On Thu, Mar 7, 2019 at 9:23 AM Adrian Bunk <bunk@stusta.de> wrote: > > On Tue, Mar 05, 2019 at 09:45:42PM -0800, Khem Raj wrote: > > Signed-off-by: Khem Raj <raj.khem@gmail.com> > > --- > > .../recipes-connectivity/inetutils/inetutils_1.9.4.bb | 2 ++ > >... > > This recipe moved to OE-core. > thansk of reminder, yeah it was in transition. I hoping Tom will send a patch to delete these recipes from meta-oe repo. > cu > Adrian > > -- > > "Is there not promise of rain?" Ling Tan asked suddenly out > of the darkness. There had been need of rain for many days. > "Only a promise," Lao Er said. > Pearl S. Buck - Dragon Seed > -- _______________________________________________ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
On Thu, Mar 07, 2019 at 09:25:33AM -0800, Khem Raj wrote: > On Thu, Mar 7, 2019 at 9:23 AM Adrian Bunk <bunk@stusta.de> wrote: > > > > On Tue, Mar 05, 2019 at 09:45:42PM -0800, Khem Raj wrote: > > > Signed-off-by: Khem Raj <raj.khem@gmail.com> > > > --- > > > .../recipes-connectivity/inetutils/inetutils_1.9.4.bb | 2 ++ > > >... > > > > This recipe moved to OE-core. > > > > thansk of reminder, yeah it was in transition. I hoping Tom will send a > patch to delete these recipes from meta-oe repo. Yes, I sent one last week :) Do you need me to rebase them? -- Tom -- _______________________________________________ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
On Thu, Mar 7, 2019 at 12:48 PM Tom Rini <trini@konsulko.com> wrote: > > On Thu, Mar 07, 2019 at 09:25:33AM -0800, Khem Raj wrote: > > On Thu, Mar 7, 2019 at 9:23 AM Adrian Bunk <bunk@stusta.de> wrote: > > > > > > On Tue, Mar 05, 2019 at 09:45:42PM -0800, Khem Raj wrote: > > > > Signed-off-by: Khem Raj <raj.khem@gmail.com> > > > > --- > > > > .../recipes-connectivity/inetutils/inetutils_1.9.4.bb | 2 ++ > > > >... > > > > > > This recipe moved to OE-core. > > > > > > > thansk of reminder, yeah it was in transition. I hoping Tom will send a > > patch to delete these recipes from meta-oe repo. > > Yes, I sent one last week :) Do you need me to rebase them? > its not in my inbox, maybe I missed it, please point me to it. In anycase I have pushed a patch into master-next https://git.openembedded.org/meta-openembedded/commit/?h=master-next&id=26e11bd62d066dfdb7034c981f6fca04411c95f2 > -- > Tom -- _______________________________________________ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
On Thu, Mar 07, 2019 at 12:53:40PM -0800, Khem Raj wrote: > On Thu, Mar 7, 2019 at 12:48 PM Tom Rini <trini@konsulko.com> wrote: > > > > On Thu, Mar 07, 2019 at 09:25:33AM -0800, Khem Raj wrote: > > > On Thu, Mar 7, 2019 at 9:23 AM Adrian Bunk <bunk@stusta.de> wrote: > > > > > > > > On Tue, Mar 05, 2019 at 09:45:42PM -0800, Khem Raj wrote: > > > > > Signed-off-by: Khem Raj <raj.khem@gmail.com> > > > > > --- > > > > > .../recipes-connectivity/inetutils/inetutils_1.9.4.bb | 2 ++ > > > > >... > > > > > > > > This recipe moved to OE-core. > > > > > > > > > > thansk of reminder, yeah it was in transition. I hoping Tom will send a > > > patch to delete these recipes from meta-oe repo. > > > > Yes, I sent one last week :) Do you need me to rebase them? > > > > its not in my inbox, maybe I missed it, please point me to it. In > anycase I have pushed a patch into master-next Lemme just wipe the egg off my face for sending it to the wrong list, rebase it anyhow and send it properly. Sorry about that! -- Tom -- _______________________________________________ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
diff --git a/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.4.bb b/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.4.bb index a27dbae2e6..453f485d1c 100644 --- a/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.4.bb +++ b/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.4.bb @@ -54,6 +54,8 @@ EXTRA_OECONF_append_libc-musl = " --disable-rsh --disable-rcp --disable-rlogin " do_configure_prepend () { export HELP2MAN='true' cp ${STAGING_DATADIR_NATIVE}/gettext/config.rpath ${S}/build-aux/config.rpath + install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S} + install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S} rm -f ${S}/glob/configure* }
Signed-off-by: Khem Raj <raj.khem@gmail.com> --- .../recipes-connectivity/inetutils/inetutils_1.9.4.bb | 2 ++ 1 file changed, 2 insertions(+) -- 2.21.0 -- _______________________________________________ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel