We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ba8eacb + 2de1598 commit 876b300Copy full SHA for 876b300
xmlsec_setupinfo.py
@@ -174,7 +174,7 @@ def load_xmlsec1_config():
174
# fix macros, ensure that macros is list
175
macros = list(config.get('define_macros', []))
176
for i, v in enumerate(macros):
177
- if v[0] == 'XMLSEC_CRYPTO':
+ if v[0] == 'XMLSEC_CRYPTO' and not (v[1].startswith('"') and v[1].endswith('"')):
178
macros[i] = ('XMLSEC_CRYPTO', '"{0}"'.format(v[1]))
179
break
180
config['define_macros'] = macros
0 commit comments