diff options
author | Evan Martin <martine@danga.com> | 2012-06-16 20:29:09 (GMT) |
---|---|---|
committer | Evan Martin <martine@danga.com> | 2012-06-16 20:29:09 (GMT) |
commit | 1a871421636092f11af288fa441412654edda49f (patch) | |
tree | 6c55249f43011fa06ac85c9e598c0c98d15d177e /configure.py | |
parent | a08b8c8344ca2eae02539e2a6f702dcfd197091c (diff) | |
download | Ninja-1a871421636092f11af288fa441412654edda49f.zip Ninja-1a871421636092f11af288fa441412654edda49f.tar.gz Ninja-1a871421636092f11af288fa441412654edda49f.tar.bz2 |
fix quoting thinko
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index ef0622f..5329708 100755 --- a/configure.py +++ b/configure.py @@ -153,7 +153,7 @@ def shell_escape(str): # TODO: do the appropriate thing for Windows-style cmd here, perhaps by # just returning the input string. if '"' in str: - return "'%s'" % str.replace("'", "\'") + return "'%s'" % str.replace("'", "\\'") return str if 'CFLAGS' in configure_env: |