Skip to content

Commit 52d4d8e

Browse files
committed
build-script: strip debug info from libraries and executables
One of the recent build-script refactorings has dropped the parentheses, restore them. rdar://problem/27083605
1 parent 5164668 commit 52d4d8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2904,7 +2904,7 @@ for host in "${ALL_HOSTS[@]}"; do
29042904
# Strip executables, shared libraries and static libraries in
29052905
# `host_install_destdir`.
29062906
find "${host_install_destdir}${TOOLCHAIN_PREFIX}/" \
2907-
-perm -0111 -or -name "*.a" -type f -print | \
2907+
'(' -perm -0111 -or -name "*.a" ')' -type f -print | \
29082908
xargs -n 1 -P ${BUILD_JOBS} $(xcrun_find_tool strip) -S
29092909

29102910
{ set +x; } 2>/dev/null

0 commit comments

Comments
 (0)