fix quoting thinko
authorEvan Martin <martine@danga.com>
Sat, 16 Jun 2012 20:29:09 +0000 (13:29 -0700)
committerEvan Martin <martine@danga.com>
Sat, 16 Jun 2012 20:29:09 +0000 (13:29 -0700)
configure.py

index ef0622f..5329708 100755 (executable)
@@ -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: