Steve,

Please backport this to kirkstone at your convenience.

Thanks

On Fri, Oct 21, 2022 at 9:53 AM Joshua Watt <jpewhac...@gmail.com> wrote:
>
> The code to parse arguments was inadvertently skipping all arguments in
> the elif block after gl-es if it was specified on the command line.
>
> Signed-off-by: Joshua Watt <jpewhac...@gmail.com>
> ---
>  scripts/runqemu | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/runqemu b/scripts/runqemu
> index 983f7514c7..189fc3da91 100755
> --- a/scripts/runqemu
> +++ b/scripts/runqemu
> @@ -497,7 +497,7 @@ class BaseConfig(object):
>                  self.gtk = True
>              elif arg == 'gl':
>                  self.gl = True
> -            elif 'gl-es' in sys.argv[1:]:
> +            elif arg == 'gl-es':
>                  self.gl_es = True
>              elif arg == 'egl-headless':
>                  self.egl_headless = True
> --
> 2.33.0
>
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#172158): 
https://lists.openembedded.org/g/openembedded-core/message/172158
Mute This Topic: https://lists.openembedded.org/mt/94477370/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to