Chromium Code Reviews| Index: gmerge |
| diff --git a/gmerge b/gmerge |
| index 363233f187c91e1cd538939322e8fb8624937be4..e61fb421ad0906e6fc2dbd58ce37671d15bad7c7 100755 |
| --- a/gmerge |
| +++ b/gmerge |
| @@ -72,6 +72,7 @@ class GMerger(object): |
| """Build the POST string that conveys our options to the devserver.""" |
| post_data = {'board': self.board_name, |
| 'pkg': package_name, |
| + 'features': FLAGS.features, |
| 'use': FLAGS.use, |
| 'accept_stable': FLAGS.accept_stable, |
| } |
| @@ -102,6 +103,9 @@ def main(): |
| parser.add_option('-n', '--no_devserver', |
| action='store_false', dest='call_devserver', default=True, |
| help='Do not actually ask the server to build') |
| + parser.add_option('--features', '--FEATURES', |
| + dest='features', default=None, |
|
rochberg
2011/04/09 19:59:34
Feel free to say "another CL" or "No U", but I thi
|
| + help='FEATURES flags to pass to emerge on the server') |
| parser.add_option('--use', '--USE', |
| dest='use', default=None, |
| help='USE flags to pass to emerge on the server') |