summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2012-05-02 03:46:34 (GMT)
committerEvan Martin <martine@danga.com>2012-05-02 03:46:34 (GMT)
commit3253f66fd14fce3278f71b29a22d61bf1b4aa9f5 (patch)
tree33c96904b209f5859260426467d35e04e0e8db14 /configure.py
parentcca1a4b07b393e76d3280b4dedb1cde044f3d567 (diff)
downloadNinja-3253f66fd14fce3278f71b29a22d61bf1b4aa9f5.zip
Ninja-3253f66fd14fce3278f71b29a22d61bf1b4aa9f5.tar.gz
Ninja-3253f66fd14fce3278f71b29a22d61bf1b4aa9f5.tar.bz2
clarify a flag in configure.py
(The -g flag is always on, --debug just adds e.g. libstdc++'s extra debugging features.) Related to issue #286.
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index bd3da67..8f965c8 100755
--- a/configure.py
+++ b/configure.py
@@ -36,7 +36,7 @@ parser.add_option('--host',
help='host platform (' + '/'.join(platforms) + ')',
choices=platforms)
parser.add_option('--debug', action='store_true',
- help='enable debugging flags',)
+ help='enable debugging extras',)
parser.add_option('--profile', metavar='TYPE',
choices=profilers,
help='enable profiling (' + '/'.join(profilers) + ')',)