[gnome-continuous-yocto/gnomeostree-3.28-rocko: 3659/8267] oeqa/utils/commands.py: Make a copy of variables in get_bb_vars



commit 9d55e9d489cd78be592fb9b4d6484f9060c62fdd
Author: Mariano Lopez <mariano lopez linux intel com>
Date:   Wed Nov 30 10:48:21 2016 -0600

    oeqa/utils/commands.py: Make a copy of variables in get_bb_vars
    
    The function get_bb_vars will remove items for the list passed
    as the function argument, this will leave the caller with an
    empty list and the function never says it will consume the items.
    
    This hasn't been found before because only get_bb_var uses this
    function.
    
    (From OE-Core rev: 22b7fa24fefcc3974806d1b282c93b8c5880f6a4)
    
    Signed-off-by: Mariano Lopez <mariano lopez linux intel com>
    Signed-off-by: Ross Burton <ross burton intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 meta/lib/oeqa/utils/commands.py |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py
index 5cd0f74..e00c879 100644
--- a/meta/lib/oeqa/utils/commands.py
+++ b/meta/lib/oeqa/utils/commands.py
@@ -149,6 +149,7 @@ def get_bb_vars(variables=None, target=None, postconfig=None):
     """Get values of multiple bitbake variables"""
     bbenv = get_bb_env(target, postconfig=postconfig)
 
+    variables = variables.copy()
     var_re = re.compile(r'^(export )?(?P<var>\w+)="(?P<value>.*)"$')
     unset_re = re.compile(r'^unset (?P<var>\w+)$')
     lastline = None


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]