* "_append" error in gdb-cross-canadian.inc?
@ 2015-03-05 8:01 Robert P. J. Day
2015-03-05 8:06 ` Robert P. J. Day
2015-03-05 8:10 ` Robert Yang
0 siblings, 2 replies; 6+ messages in thread
From: Robert P. J. Day @ 2015-03-05 8:01 UTC (permalink / raw)
To: OE Core mailing list
EXTRA_OECONF_append = "--with-python=${WORKDIR}/python"
^??
does that not require a leading space there?
rday
--
========================================================================
Robert P. J. Day Ottawa, Ontario, CANADA
http://crashcourse.ca
Twitter: http://twitter.com/rpjday
LinkedIn: http://ca.linkedin.com/in/rpjday
========================================================================
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: "_append" error in gdb-cross-canadian.inc? 2015-03-05 8:01 "_append" error in gdb-cross-canadian.inc? Robert P. J. Day @ 2015-03-05 8:06 ` Robert P. J. Day 2015-03-05 8:43 ` Martin Jansa 2015-03-05 8:10 ` Robert Yang 1 sibling, 1 reply; 6+ messages in thread From: Robert P. J. Day @ 2015-03-05 8:06 UTC (permalink / raw) To: OE Core mailing list On Thu, 5 Mar 2015, Robert P. J. Day wrote: > > EXTRA_OECONF_append = "--with-python=${WORKDIR}/python" > ^?? > > does that not require a leading space there? just did a quick scan of other possibilities where a leading space might be needed where _append is being used to append command-line options, and here's the only other one i could find: meta/recipes-multimedia/libpng/libpng_1.6.16.bb:EXTRA_OECONF_append_class-target = " ${@bb.utils.contains("TUNE_FEATURES", "neon", "--enable-arm-neon=on", "--enable-arm-neon=off" ,d)}" i'll let someone else apply those if they're actually needed. rday -- ======================================================================== Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://ca.linkedin.com/in/rpjday ======================================================================== ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: "_append" error in gdb-cross-canadian.inc? 2015-03-05 8:06 ` Robert P. J. Day @ 2015-03-05 8:43 ` Martin Jansa 2015-03-05 9:11 ` Robert P. J. Day 0 siblings, 1 reply; 6+ messages in thread From: Martin Jansa @ 2015-03-05 8:43 UTC (permalink / raw) To: Robert P. J. Day; +Cc: OE Core mailing list [-- Attachment #1: Type: text/plain, Size: 1508 bytes --] On Thu, Mar 05, 2015 at 03:06:13AM -0500, Robert P. J. Day wrote: > On Thu, 5 Mar 2015, Robert P. J. Day wrote: > > > > > EXTRA_OECONF_append = "--with-python=${WORKDIR}/python" > > ^?? > > > > does that not require a leading space there? > > just did a quick scan of other possibilities where a leading space > might be needed where _append is being used to append command-line > options, and here's the only other one i could find: > > meta/recipes-multimedia/libpng/libpng_1.6.16.bb:EXTRA_OECONF_append_class-target > = " ${@bb.utils.contains("TUNE_FEATURES", "neon", > "--enable-arm-neon=on", "--enable-arm-neon=off" ,d)}" This one has a leading space. > > i'll let someone else apply those if they're actually needed. > > rday > > -- > > ======================================================================== > Robert P. J. Day Ottawa, Ontario, CANADA > http://crashcourse.ca > > Twitter: http://twitter.com/rpjday > LinkedIn: http://ca.linkedin.com/in/rpjday > ======================================================================== > > -- > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-core -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 188 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: "_append" error in gdb-cross-canadian.inc? 2015-03-05 8:43 ` Martin Jansa @ 2015-03-05 9:11 ` Robert P. J. Day 0 siblings, 0 replies; 6+ messages in thread From: Robert P. J. Day @ 2015-03-05 9:11 UTC (permalink / raw) To: Martin Jansa; +Cc: OE Core mailing list On Thu, 5 Mar 2015, Martin Jansa wrote: > On Thu, Mar 05, 2015 at 03:06:13AM -0500, Robert P. J. Day wrote: > > On Thu, 5 Mar 2015, Robert P. J. Day wrote: > > > > > > > > EXTRA_OECONF_append = "--with-python=${WORKDIR}/python" > > > ^?? > > > > > > does that not require a leading space there? > > > > just did a quick scan of other possibilities where a leading space > > might be needed where _append is being used to append command-line > > options, and here's the only other one i could find: > > > > meta/recipes-multimedia/libpng/libpng_1.6.16.bb:EXTRA_OECONF_append_class-target > > = " ${@bb.utils.contains("TUNE_FEATURES", "neon", > > "--enable-arm-neon=on", "--enable-arm-neon=off" ,d)}" > > This one has a leading space. whoops, you're right, i didn't look far enough back. rday -- ======================================================================== Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://ca.linkedin.com/in/rpjday ======================================================================== ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: "_append" error in gdb-cross-canadian.inc? 2015-03-05 8:01 "_append" error in gdb-cross-canadian.inc? Robert P. J. Day 2015-03-05 8:06 ` Robert P. J. Day @ 2015-03-05 8:10 ` Robert Yang 2015-03-05 8:40 ` Robert P. J. Day 1 sibling, 1 reply; 6+ messages in thread From: Robert Yang @ 2015-03-05 8:10 UTC (permalink / raw) To: Robert P. J. Day, OE Core mailing list On 03/05/2015 04:01 PM, Robert P. J. Day wrote: > > EXTRA_OECONF_append = "--with-python=${WORKDIR}/python" > ^?? > > does that not require a leading space there? It is required, this one doesn't cause error is because in gdb-common.inc: EXTRA_OECONF = "[snip] \ --disable-rpath \ " If: EXTRA_OECONF = "[snip] \ --disable-rpath" Then there would be errors. // Robert > > rday > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: "_append" error in gdb-cross-canadian.inc? 2015-03-05 8:10 ` Robert Yang @ 2015-03-05 8:40 ` Robert P. J. Day 0 siblings, 0 replies; 6+ messages in thread From: Robert P. J. Day @ 2015-03-05 8:40 UTC (permalink / raw) To: Robert Yang; +Cc: OE Core mailing list On Thu, 5 Mar 2015, Robert Yang wrote: > On 03/05/2015 04:01 PM, Robert P. J. Day wrote: > > > > EXTRA_OECONF_append = "--with-python=${WORKDIR}/python" > > ^?? > > > > does that not require a leading space there? > > It is required, this one doesn't cause error is because in gdb-common.inc: > > EXTRA_OECONF = "[snip] \ > --disable-rpath \ > " > > If: > > EXTRA_OECONF = "[snip] \ > --disable-rpath" > > Then there would be errors. yeah ... that's not the sort of luck i'd like to count on on a regular basis. :-) rday -- ======================================================================== Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://ca.linkedin.com/in/rpjday ======================================================================== ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-03-05 9:11 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-03-05 8:01 "_append" error in gdb-cross-canadian.inc? Robert P. J. Day 2015-03-05 8:06 ` Robert P. J. Day 2015-03-05 8:43 ` Martin Jansa 2015-03-05 9:11 ` Robert P. J. Day 2015-03-05 8:10 ` Robert Yang 2015-03-05 8:40 ` Robert P. J. Day
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.