(self)
| 124 | return sorted(recipes) |
| 125 | |
| 126 | def get_build_dir_name(self): |
| 127 | choices = self.check_recipe_choices() |
| 128 | dir_name = '-'.join([self.name] + choices) |
| 129 | return dir_name |
| 130 | |
| 131 | def get_build_dir(self): |
| 132 | return join(self.ctx.build_dir, 'bootstrap_builds', self.get_build_dir_name()) |