From 152872b7384a7e749135d360ccbee9da05ade742 Mon Sep 17 00:00:00 2001 From: Siddharth Agarwal Date: Mon, 6 Aug 2012 02:16:00 +0530 Subject: [PATCH] The correct fix for bug 780497. Missed a backslash. --- build/pymake/pymake/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/pymake/pymake/process.py b/build/pymake/pymake/process.py index a60e3c4e3d5..b4afac1ede3 100644 --- a/build/pymake/pymake/process.py +++ b/build/pymake/pymake/process.py @@ -16,7 +16,7 @@ _log = logging.getLogger('pymake.process') _escapednewlines = re.compile(r'\\\n') _blacklist = re.compile(r'[$><;[~`|&()]' + - r'|${|(?:^|\s){(?:$|\s)') # Blacklist ${foo} and { commands } + r'|\${|(?:^|\s){(?:$|\s)') # Blacklist ${foo} and { commands } _needsglob = re.compile(r'[\*\?]') def clinetoargv(cline): """