File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1180,16 +1180,16 @@ def find_additional_dependencies(project: pathlib.Path):
1180
1180
}]
1181
1181
1182
1182
for obj in process_project (ext , dest_dir ):
1183
- res ['extensions' ][ext ]['objs' ].append ('build/extensions/%s/%s' % (ext , obj ))
1183
+ res ['extensions' ][ext ][0 ][ 'objs' ].append ('build/extensions/%s/%s' % (ext , obj ))
1184
1184
1185
1185
for lib in CONVERT_TO_BUILTIN_EXTENSIONS .get (ext , {}).get ('static_depends' , []):
1186
- res ['extensions' ][ext ]['links' ].append ({
1186
+ res ['extensions' ][ext ][0 ][ 'links' ].append ({
1187
1187
'name' : lib ,
1188
1188
'path_static' : 'build/lib/%s.lib' % lib ,
1189
1189
})
1190
1190
1191
1191
for lib in CONVERT_TO_BUILTIN_EXTENSIONS .get (ext , {}).get ('static_depends_no_project' , []):
1192
- res ['extensions' ][ext ]['links' ].append ({
1192
+ res ['extensions' ][ext ][0 ][ 'links' ].append ({
1193
1193
'name' : lib ,
1194
1194
'path_static' : 'build/lib/%s.lib' % lib
1195
1195
})
You can’t perform that action at this time.
0 commit comments