From d9f628338e61d9c6621eb0ae96b826c430a8d51e Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Sat, 28 May 2005 19:08:00 +0000 Subject: bitbake/bin/bitbake: update_data() of make.cfg after we've parsed the each and every bitbake file. Call me paranoid but this way we make sure that changes made in the bb files are actually taken... --- bin/bitbake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/bitbake b/bin/bitbake index 4adb6d740..482b71ffc 100755 --- a/bin/bitbake +++ b/bin/bitbake @@ -637,8 +637,6 @@ class BBCooker: self.parseConfigurationFile( os.path.join( "conf", "bitbake.conf" ) ) - bb.data.update_data( make.cfg ) - if not bb.data.getVar("BUILDNAME", make.cfg): bb.data.setVar("BUILDNAME", os.popen('date +%Y%m%d%H%M').readline().strip(), make.cfg) @@ -696,6 +694,7 @@ class BBCooker: print "Requested parsing .bb files only. Exiting." return + bb.data.update_data( make.cfg ) self.buildDepgraph() if make.options.show_versions: -- cgit 1.2.3-korg