diff options
Diffstat (limited to 'tools/python/google/httpd_utils.py')
-rw-r--r-- | tools/python/google/httpd_utils.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/python/google/httpd_utils.py b/tools/python/google/httpd_utils.py index 28952ed..309c924 100644 --- a/tools/python/google/httpd_utils.py +++ b/tools/python/google/httpd_utils.py @@ -1,5 +1,5 @@ #!/bin/env python -# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +# Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -176,7 +176,8 @@ if '__main__' == __name__: option_parser.add_option('-k', '--server', help='Server action (start|stop)') option_parser.add_option('-r', '--root', help='Document root (optional)') option_parser.add_option('-a', '--apache2', action='store_true', - default=False, help='Starts Apache 2 instead of Apache 1.3 (default).') + default=False, help='Starts Apache 2 instead of Apache 1.3 (default). ' + 'Ignored on Mac (apache2 is used always)') options, args = option_parser.parse_args() if not options.server: |