From 42601a5edef0316767b952b162123534aa8fee18 Mon Sep 17 00:00:00 2001 From: Cristiana Voicu Date: Mon, 7 Oct 2013 14:28:55 +0300 Subject: bitbake: replace comment added in conf files The patch that implements removeConfigurationVar method was made before merging the patch that replaces "added by bitbake" with "added by hob". This patch corrects this issue. [YOCTO #5284] Signed-off-by: Cristiana Voicu Signed-off-by: Richard Purdie --- lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py index d17716d39..ad36b34aa 100644 --- a/lib/bb/cooker.py +++ b/lib/bb/cooker.py @@ -328,7 +328,7 @@ class BBCooker: begin_line = total.count("\n",0,index) #check if the variable was saved before in the same way - if contents[begin_line-1]== "#added by bitbake\n": + if contents[begin_line-1]== "#added by hob\n": contents[begin_line-1] = contents[begin_line] = "\n" else: contents[begin_line] = "\n" -- cgit 1.2.3-korg