Re: [yocto] Failing devshell

2015-11-27 Thread Burton, Ross
On 26 November 2015 at 17:25, Dariusz Pelowski wrote: > Is it acceptable solution? Could you apply attached patch? > That's exactly the right thing to do. Can you reformat the commit message to match git style ("lib/oe/terminal: use C locale when determining

Re: [yocto] Failing devshell

2015-11-27 Thread Dariusz Pelowski
2015-11-27 13:45 GMT+01:00 Burton, Ross : > > On 26 November 2015 at 17:25, Dariusz Pelowski > wrote: > >> Is it acceptable solution? Could you apply attached patch? >> > > That's exactly the right thing to do. Can you reformat the commit

Re: [yocto] Failing devshell

2015-11-26 Thread Dariusz Pelowski
You are right. have you done some testing in non-gnome terminals using your patch? Yes, all terminals using check_terminal_version() function works correctly on my system (Konsole: 15.08.0; tmux 2.1) -- ___ yocto mailing list

[yocto] Failing devshell

2015-11-26 Thread Dariusz Pelowski
Hi, I'm getting an error during execution of devshell: bitbake -c devshell quilt-native WARNING: Host distribution "Arch-Linux" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution. ...

Re: [yocto] Failing devshell

2015-11-26 Thread Leonardo Sandoval
Is it acceptable solution? Could you apply attached patch? A less intrusive change would be to check if the output of the --version command contains the word 'GNOME' (either using the 'in' build-in operation or string.find). This is done in the same function you modified in your previous

Re: [yocto] Failing devshell

2015-11-26 Thread Dariusz Pelowski
A less intrusive change would be to check if the output of the --version command contains the word 'GNOME' (either using the 'in' build-in operation or string.find). This is done in the same function you modified in your previous patch. Greping gnome-terminal translations we can find

Re: [yocto] Failing devshell

2015-11-26 Thread Leonardo Sandoval
You are right. have you done some testing in non-gnome terminals using your patch? On 11/26/2015 01:10 PM, Dariusz Pelowski wrote: A less intrusive change would be to check if the output of the --version command contains the word 'GNOME' (either using the 'in' build-in operation or