From: Joshua Watt <[email protected]> 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 <[email protected]> Signed-off-by: Alexandre Belloni <[email protected]> (cherry picked from commit 718bb8d56f6a24c86e67830a7d13af54df2ebb4e) Signed-off-by: Steve Sakoman <[email protected]> --- scripts/runqemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/runqemu b/scripts/runqemu index 5daf492bac..a6ea578564 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -499,7 +499,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.25.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#172558): https://lists.openembedded.org/g/openembedded-core/message/172558 Mute This Topic: https://lists.openembedded.org/mt/94726949/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
