From 1a871421636092f11af288fa441412654edda49f Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Sat, 16 Jun 2012 13:29:09 -0700 Subject: [PATCH] fix quoting thinko --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.7.4