summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-10-07 14:28:55 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-10-07 12:52:05 +0100
commitb4df63ae6386ff74d67130772a89ff2eaa88360a (patch)
tree3e7a02ed13c48af398ea51464ab487605fd7a1e3
parent7ac9d05f48d921fb98c370e4f9d248f8b382fb30 (diff)
downloadtizen-distro-b4df63ae6386ff74d67130772a89ff2eaa88360a.tar.gz
tizen-distro-b4df63ae6386ff74d67130772a89ff2eaa88360a.tar.bz2
tizen-distro-b4df63ae6386ff74d67130772a89ff2eaa88360a.zip
bitbake: 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] (Bitbake rev: 42601a5edef0316767b952b162123534aa8fee18) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index d17716d39e..ad36b34aa4 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/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"