diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-02-09 04:01:11 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-02-09 04:01:11 +0000 |
commit | eaa0ffbc41d89e77735c2cf27cbdb9433db376cf (patch) | |
tree | b509b5549150f5914feb8d4ff8819b2bc0fab120 | |
parent | 32c1a4c342b252c5709abbe01172112fde9e0bc1 (diff) |
Small fix for the 'strip' command. Do a list of .so files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64112 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/buildit/build_llvm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/buildit/build_llvm b/utils/buildit/build_llvm index 6ded723dd1..0c0b6f9111 100755 --- a/utils/buildit/build_llvm +++ b/utils/buildit/build_llvm @@ -176,8 +176,8 @@ echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DES if [ "x$LLVM_DEBUG" != "x1" ]; then # Strip local symbols from llvm libraries. strip -S $DEST_DIR$DEST_ROOT/lib/*.[oa] - for file in $DEST_DIR$DEST_ROOT/lib/*.so; do - strip -Sx $file + for f in `ls $DEST_DIR$DEST_ROOT/lib/*.so`; do + strip -Sx $f done fi |