OLD | NEW |
1 # -*- coding: ascii -*- | 1 # -*- coding: ascii -*- |
2 # | 2 # |
3 # Copyright 2007, 2008, 2009, 2010, 2011 | 3 # Copyright 2007, 2008, 2009, 2010, 2011 |
4 # Andr\xe9 Malo or his licensors, as applicable | 4 # Andr\xe9 Malo or his licensors, as applicable |
5 # | 5 # |
6 # Licensed under the Apache License, Version 2.0 (the "License"); | 6 # Licensed under the Apache License, Version 2.0 (the "License"); |
7 # you may not use this file except in compliance with the License. | 7 # you may not use this file except in compliance with the License. |
8 # You may obtain a copy of the License at | 8 # You may obtain a copy of the License at |
9 # | 9 # |
10 # http://www.apache.org/licenses/LICENSE-2.0 | 10 # http://www.apache.org/licenses/LICENSE-2.0 |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 | 257 |
258 def finalize_options(self): | 258 def finalize_options(self): |
259 """ Finalize options """ | 259 """ Finalize options """ |
260 _build.build.finalize_options(self) | 260 _build.build.finalize_options(self) |
261 if 'build' in _option_inherits: | 261 if 'build' in _option_inherits: |
262 for parent, opt_name in _option_inherits['build']: | 262 for parent, opt_name in _option_inherits['build']: |
263 self.set_undefined_options(parent, (opt_name, opt_name)) | 263 self.set_undefined_options(parent, (opt_name, opt_name)) |
264 if 'build' in _option_finalizers: | 264 if 'build' in _option_finalizers: |
265 for func in list(_option_finalizers['build'].values()): | 265 for func in list(_option_finalizers['build'].values()): |
266 func(self) | 266 func(self) |
OLD | NEW |