File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -272,19 +272,21 @@ def _link_multi_arch_binary(
272272 else :
273273 dsym_bundle_name = bundle_name
274274
275+ full_dsym_bundle_name = "{dsym_bundle_name}.dSYM" .format (
276+ dsym_bundle_name = dsym_bundle_name ,
277+ )
278+
275279 if multi_arch_build :
276280 dsym_output = intermediates .directory (
277281 actions = ctx .actions ,
278282 target_name = bundle_name ,
279283 output_discriminator = cc_toolchain .target_gnu_system_name ,
280- dir_name = dsym_bundle_name ,
284+ dir_name = full_dsym_bundle_name ,
281285 )
282286 else :
283287 # Avoiding "intermediates" as this will be the only dSYM in a single arch build.
284288 dsym_output = ctx .actions .declare_directory (
285- "{dsym_bundle_name}.dSYM" .format (
286- dsym_bundle_name = dsym_bundle_name ,
287- ),
289+ full_dsym_bundle_name ,
288290 )
289291 elif dsym_variants != "flat" :
290292 fail ("""
You can’t perform that action at this time.
0 commit comments