| Index: pylib/gyp/generator/xcode.py
|
| diff --git a/pylib/gyp/generator/xcode.py b/pylib/gyp/generator/xcode.py
|
| index 907e0480ea15cd6186888ea14f973490e3492ec7..f39f20209a364387dd2d611e715149b5dcf7ee4c 100644
|
| --- a/pylib/gyp/generator/xcode.py
|
| +++ b/pylib/gyp/generator/xcode.py
|
| @@ -522,7 +522,7 @@ def AddHeaderToTarget(header, pbxp, xct, is_public):
|
| xct.HeadersPhase().AddFile(header, settings)
|
|
|
|
|
| -_xcode_variable_re = re.compile('(\$\((.*?)\))')
|
| +_xcode_variable_re = re.compile(r'(\$\((.*?)\))')
|
| def ExpandXcodeVariables(string, expansions):
|
| """Expands Xcode-style $(VARIABLES) in string per the expansions dict.
|
|
|
|
|