On Mon, Apr 20, 2015 at 02:41:21PM -0400, Denys Dmytriyenko wrote: > On Fri, Apr 17, 2015 at 04:25:46PM -0400, Sam Nelson wrote: > > - Install was failing if there are no modules for certain platforms > > > > Signed-off-by: Sam Nelson <[email protected]> > > --- > > .../recipes-devtools/ltp-ddt/ltp-ddt_1.0.0.bb | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_1.0.0.bb > > b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_1.0.0.bb > > index 68e1a3c..609b344 100644 > > --- a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_1.0.0.bb > > +++ b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_1.0.0.bb > > @@ -87,7 +87,7 @@ do_install() { > > oe_runmake install > > install -d ${D}${datadir} > > install -d ${D}${kmoddir} > > - mv ${D}${LTPROOT}/testcases/bin/ddt/*.ko ${D}${kmoddir} > > + find ${D}${LTPROOT}/testcases/bin/ddt/*.ko && mv > > ${D}${LTPROOT}/testcases/bin/ddt/*.ko ${D}${kmoddir} > > Should probably do "mv || true" instead...
Sam, Do you have any issues doing mv||true construct or do you want to stick with the find command for any reason? -- Denys _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
