forked from OSchip/llvm-project
Ignore shell scripts when doing "dsymutil" call.
llvm-svn: 45166
This commit is contained in:
parent
5f47cae3ce
commit
7c0bea1ce9
|
@ -201,7 +201,8 @@ cd $SYM_DIR || exit 1
|
|||
rm -rf * || exit 1
|
||||
|
||||
# Generate .dSYM files
|
||||
find $DEST_DIR -perm -0111 -type f -print | xargs -n 1 -P ${SYSCTL} dsymutil
|
||||
find $DEST_DIR -perm -0111 -type f ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config \) -print \
|
||||
| xargs -n 1 -P ${SYSCTL} dsymutil
|
||||
|
||||
# Save .dSYM files and .a archives
|
||||
cd $DEST_DIR || exit 1
|
||||
|
|
Loading…
Reference in New Issue