Re: [OE-core] [PATCH 1/3] autotools: fix multi-word arguments for EXTRA_OECONF

2011-10-10 Thread Chris Larson
On Fri, Oct 7, 2011 at 3:34 PM, Koen Kooi k...@beagleboard.org wrote: oe_runconf () { -       if [ -x ${S}/configure ] ; then -               cfgcmd=${S}/configure \ -               ${CONFIGUREOPTS} ${EXTRA_OECONF} $@ -               bbnote Running $cfgcmd... -               $cfgcmd ||

[OE-core] [PATCH 1/3] autotools: fix multi-word arguments for EXTRA_OECONF

2011-10-07 Thread Christopher Larson
This is needed to better support things like the following (with a multi-word BUILD_CC): EXTRA_OECONF += 'ac_cv_prog_CC_FOR_BUILD=${BUILD_CC}' Signed-off-by: Christopher Larson kerg...@gmail.com --- meta/classes/autotools.bbclass | 14 ++ 1 files changed, 6 insertions(+), 8

Re: [OE-core] [PATCH 1/3] autotools: fix multi-word arguments for EXTRA_OECONF

2011-10-07 Thread Koen Kooi
Op 7 okt 2011, om 23:02 heeft Christopher Larson het volgende geschreven: This is needed to better support things like the following (with a multi-word BUILD_CC): EXTRA_OECONF += 'ac_cv_prog_CC_FOR_BUILD=${BUILD_CC}' Signed-off-by: Christopher Larson kerg...@gmail.com ---