diff options
-rwxr-xr-x | bitbake/bin/bitbake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 6d74e5b85d..cef59c9117 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -47,6 +47,7 @@ class BBConfiguration( object ): | |||
47 | def __init__( self, options ): | 47 | def __init__( self, options ): |
48 | for key, val in options.__dict__.items(): | 48 | for key, val in options.__dict__.items(): |
49 | setattr( self, key, val ) | 49 | setattr( self, key, val ) |
50 | self.pkgs_to_build = [] | ||
50 | 51 | ||
51 | 52 | ||
52 | def print_exception(exc, value, tb): | 53 | def print_exception(exc, value, tb): |
@@ -142,7 +143,6 @@ Default BBFILES are the .bb files in the current directory.""" ) | |||
142 | options, args = parser.parse_args(sys.argv) | 143 | options, args = parser.parse_args(sys.argv) |
143 | 144 | ||
144 | configuration = BBConfiguration(options) | 145 | configuration = BBConfiguration(options) |
145 | configuration.pkgs_to_build = [] | ||
146 | configuration.pkgs_to_build.extend(args[1:]) | 146 | configuration.pkgs_to_build.extend(args[1:]) |
147 | 147 | ||
148 | #server = bb.server.xmlrpc | 148 | #server = bb.server.xmlrpc |