[oe-commits] [openembedded-core] 16/35: combo-layer: fix default "update" mode

git at git.openembedded.org git at git.openembedded.org
Sat May 14 06:27:39 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit d0304acb05b926b08805d8652e12eaf19bf53ad6
Author: Patrick Ohly <patrick.ohly at intel.com>
AuthorDate: Fri May 13 18:56:56 2016 +0200

    combo-layer: fix default "update" mode
    
    When the "history" option is not set in the combo-layer.conf, the
    intended default was to use the traditional method. Passing "True" as
    default when querying the config was unintentional.
    
    Also remove some left-over debugging code.
    
    Signed-off-by: Patrick Ohly <patrick.ohly at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/combo-layer | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/scripts/combo-layer b/scripts/combo-layer
index 92525ca..a0a737d 100755
--- a/scripts/combo-layer
+++ b/scripts/combo-layer
@@ -641,8 +641,7 @@ def action_update(conf, args):
         history = None
         for name in repos:
             repo = conf.repos[name]
-            repo_history = repo.get('history', True)
-            logger.error('%s: %s' % (name, repo_history))
+            repo_history = repo.get('history', False)
             if history is None:
                 history = repo_history
             elif history != repo_history:

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list