diff options
author | Bill Wendling <isanbard@gmail.com> | 2007-12-18 19:21:52 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2007-12-18 19:21:52 +0000 |
commit | 18edd2060526c4060a91d88b50be35c8f15a71e9 (patch) | |
tree | bfb53bd15dd81b2de1361c1201a9328ffc2b9982 /utils/buildit | |
parent | ef361a638a91a1a0b745f9c1cf9a01319215486e (diff) | |
download | external_llvm-18edd2060526c4060a91d88b50be35c8f15a71e9.zip external_llvm-18edd2060526c4060a91d88b50be35c8f15a71e9.tar.gz external_llvm-18edd2060526c4060a91d88b50be35c8f15a71e9.tar.bz2 |
Ignore shell scripts when doing "dsymutil" call.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45166 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/buildit')
-rwxr-xr-x | utils/buildit/build_llvm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/buildit/build_llvm b/utils/buildit/build_llvm index 48d30f7..cc2fd08 100755 --- a/utils/buildit/build_llvm +++ b/utils/buildit/build_llvm @@ -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 |