Skip to content

Commit 01cb1ed

Browse files
authored
Merge pull request #26652 from Rostepher/ignore-executable-python-scripts
[Build System: build-script-impl] Ignore swift-api-dump.py and swift_build_sdk_interfaces.py when running dsymutil on executables and shared libraries.
2 parents b8de310 + cc92f52 commit 01cb1ed

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

utils/build-script-impl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3880,8 +3880,7 @@ for host in "${ALL_HOSTS[@]}"; do
38803880
# Exclude shell scripts and static archives.
38813881
(cd "${INSTALL_SYMROOT}" &&
38823882
find ./"${CURRENT_PREFIX}" -perm -0111 -type f -print | \
3883-
grep -v crashlog.py | \
3884-
grep -v symbolication.py | \
3883+
grep -v '.py$' | \
38853884
grep -v '.a$' | \
38863885
xargs -n 1 -P ${BUILD_JOBS} $(xcrun_find_tool dsymutil))
38873886

0 commit comments

Comments
 (0)