**** BEGIN LOGGING AT Thu Nov 06 03:00:00 2014 Nov 06 09:11:09 Hi, I was trying to install ADT for 1.7 version but when the installer was trying to package I am getting 403 error in the response Nov 06 09:11:50 even when tried to point browser to the urls its also report 403 errors any thoughts why this could happen Nov 06 09:16:52 Hi, While trying to use ADT installer of 1.7 I am getting 403 error while it tries to download the installer of tool chain and qeumx file. Same results is being observed when try to point browser to the URLs. Nov 06 09:17:13 So any thoughts how to fix the same Nov 06 14:49:01 hi all, can I still use sysroot_stage_all_append() on a recipe with dizzy? Nov 06 15:04:16 TuTizz: should be able to yes Nov 06 15:13:22 I tried to inherit kernel and add sysroot_stage_all_append() and got Failure expanding variable sysroot_stage_all: IndentationError: unexpected indent (, line 3) Nov 06 15:13:45 This is my line 3 : destdir=/kernel Nov 06 15:17:19 TuTizz: sysroot_stage_all is a python function, so you have to take care with the indentation - how have you indented your append? Nov 06 15:18:20 double tab (\t\t)destdir=/kernel Nov 06 15:24:08 TuTizz: ok, that's the issue... tabs aren't allowed for python functions, indentation should be four spaces per indent Nov 06 15:24:43 ok ty Nov 06 21:48:54 hi guys Nov 06 21:49:12 I switched to dizzy branches and use yocto + meta-oe Nov 06 21:49:32 x86 qemu Nov 06 21:49:45 I try to build xkeyboard_config but it fails with Nov 06 21:49:53 error: possibly undefined macro: AM_GNU_GETTEXT_VERSION Nov 06 21:50:00 Is this is known issue Nov 06 21:50:12 sounds like a missing 'inherit gettext' in the recipe Nov 06 21:51:13 there nothing i changed in the recipe Nov 06 21:51:21 is clean dizzy Nov 06 21:51:40 i didn't say you changed anything Nov 06 21:52:02 i didn't say you said that - it was an adding Nov 06 21:52:34 and you are right Nov 06 21:52:43 there us no gettext inherit there Nov 06 21:53:19 try adding it, see if that takes care of it Nov 06 21:53:40 looks like it has virtual/gettext in depends instead of the inherit, which is almost certainly a bug Nov 06 21:53:45 still should have built, though Nov 06 21:53:48 * kergoth shrugs Nov 06 21:54:05 it works Nov 06 21:54:16 hmm... Nov 06 21:55:18 so it's a bug, you can either submit a patch to the mailing list to resolve it (there should be contribution guidelines on the wikis if you're not familiar with the process), or you can open a bug in the bug tracking system and let someone else take care of it Nov 06 21:56:21 i know the process - thanks Nov 06 21:56:33 np Nov 06 21:56:45 do drop the virtual/gettext dep while adding the inherit, the class takes care of it Nov 06 21:57:09 i saw it - but still - i'm confused how it this work a couple of weeks ago? Nov 06 21:57:16 because i have a build from one month ago Nov 06 21:57:28 which succeeded with xkeyboard_config Nov 06 21:57:34 the sysroot is common to all recipes Nov 06 21:57:45 if something else had already built hte necessary gettext bits by chance, then it would have built fine Nov 06 21:57:55 so recipe build order is a factor Nov 06 21:58:05 * kergoth shrugs Nov 06 21:58:59 well - i don't think this is the root of the problem Nov 06 21:59:03 let me test something Nov 06 21:59:04 brb Nov 06 22:00:39 as suspected - is not about the gettext build order Nov 06 22:01:00 because i recompiled it without inherit gettext now and it failed again Nov 06 22:01:11 even though all gettext bits are obviously in place Nov 06 22:02:27 ah, okay, must be the nls configure argument then, but that doesn't explain why it used to work Nov 06 22:02:30 i'm all out of ideas :) Nov 06 22:02:58 yeah - i'll go for nls too - will see Nov 06 22:13:01 kergoth: how would you explain that i can configure xkeyboard correctly only of i add to depends gettext-native Nov 06 22:13:07 even though it is already compiled Nov 06 22:13:25 ag_: compilation isn't the issue. autotools.bbclass only pulls the m4 macros from bits it depends on Nov 06 22:13:31 without those macros, it wont' be able to configure Nov 06 22:14:05 uh - so that explains it Nov 06 22:14:30 without gettext-native autotools won't pull in the m4 for it Nov 06 22:14:32 right> Nov 06 22:14:34 ? Nov 06 22:14:48 pretty much. what's strange is that gettext doesnt' provide the gettext macros, only gettext-native does? :) Nov 06 22:14:56 * kergoth shrugs Nov 06 22:15:03 exactly my next q Nov 06 22:15:35 something happened in gettext - because one month ago it was able to find the macros from gettext Nov 06 22:15:36 i'm assuming there's a reason for that, but i have no idea what it is. could be they wanted to avoid having two versions of the same macros in the sysroots to avoid confusion? Nov 06 22:15:45 could check the lists or git history Nov 06 22:16:34 ag_: are you doing a build with gplv3 excluded? Nov 06 22:16:42 yes Nov 06 22:17:00 that explains it Nov 06 22:17:00 you got the saving idea? Nov 06 22:17:05 shoot me Nov 06 22:17:25 in a non-gplv3 build, the gettext-native used is recent, 0.18. but the gettext is old, 0.16, due to gplv3, so we end up with two different versions of gettext.m4 in the sysroots Nov 06 22:17:35 see 9e10db5bdfe77c0ef2aff2f1cf89958b62c294a1 in poky, f43139adceaf8039d5347dea0a116dc5923b24c1 in oe-core Nov 06 22:17:43 its a change i did, it seems :) Nov 06 22:18:24 uh right - makes sense Nov 06 22:18:56 so what would be a better fix? inherit of depends? Nov 06 22:18:58 on the plus side, anything that was broken by that change, like this case, needs to be fixed to use the inherit anyway Nov 06 22:19:10 agreed Nov 06 22:19:15 as i said earlier, fix xkeyboard-config to inherit gettext instead of depending on gettext directly Nov 06 22:19:19 that also ensures it'll obey USE_NLS Nov 06 22:19:25 agreed Nov 06 22:19:28 will send patch Nov 06 22:19:30 thanks ,ate Nov 06 22:19:34 sounds good, thanks Nov 06 22:19:35 np Nov 06 22:19:35 mate* Nov 06 22:20:07 will first finish build Nov 06 22:20:14 t send multiple stuff if needed Nov 06 22:20:17 to* **** ENDING LOGGING AT Fri Nov 07 03:00:00 2014