Skip to content

Commit 3932bc7

Browse files
Remove space-in-path replacement (#896)
This replacement causes issues with importing indexstores. In 965c373 this replacement was added to work around issues with `ar_wrapper`. I don't see `ar_wrapper` used anywhere in Bazel, so I believe this is safe to remove. Signed-off-by: Brentley Jones <[email protected]>
1 parent c5e906d commit 3932bc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

swift/internal/compiling.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1448,7 +1448,7 @@ def _declare_per_source_output_file(actions, extension, target_name, src):
14481448
The declared `File`.
14491449
"""
14501450
objs_dir = "{}_objs".format(target_name)
1451-
owner_rel_path = owner_relative_path(src).replace(" ", "__SPACE__")
1451+
owner_rel_path = owner_relative_path(src)
14521452
basename = paths.basename(owner_rel_path)
14531453
dirname = paths.join(objs_dir, paths.dirname(owner_rel_path))
14541454

0 commit comments

Comments
 (0)