mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
The %ocamlopt setting has embedded quotes. Copy the entire value instead
of stopping at the first embedded quote. llvm-svn: 111622
This commit is contained in:
parent
d4dbba35a6
commit
734df9c786
@ -111,7 +111,7 @@ import re
|
||||
site_exp = {}
|
||||
# FIXME: Implement lit.site.cfg.
|
||||
for line in open(os.path.join(config.llvm_obj_root, 'test', 'site.exp')):
|
||||
m = re.match('set ([^ ]+) "([^"]*)"', line)
|
||||
m = re.match('set ([^ ]+) "(.*)"', line)
|
||||
if m:
|
||||
site_exp[m.group(1)] = m.group(2)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user