diff options
author | KonaBlend <[email protected]> | 2015-10-29 23:44:19 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2016-05-25 15:45:05 -0400 |
commit | 12a591af07ad9da0fbe7b014ba0c3522e3bdfb0c (patch) | |
tree | 9854175b75f5621ff5833a80de866eed85752779 /make | |
parent | ccfc9b59075d2bcc1d5a6a29cf859d055da7430c (diff) |
Build: fix configure to escape $ for xcode
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py index e27b477fa..30c313c14 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1736,7 +1736,7 @@ int main () args = [] for arg in Option.conf_args: args.append( arg[1] ) - doc.add( 'CONF.args', ' '.join( args )) + doc.add( 'CONF.args', ' '.join(args).replace('$','$$') ) doc.addBlank() doc.add( 'HB.title', project.title ) |