1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Don't run 'strip' on files that aren't there.

llvm-svn: 64108
This commit is contained in:
Bill Wendling 2009-02-09 02:18:35 +00:00
parent 0b9f8789a8
commit d8f6731440

View File

@ -176,7 +176,9 @@ 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]
strip -Sx $DEST_DIR$DEST_ROOT/lib/*.so
for file in $DEST_DIR$DEST_ROOT/lib/*.so; do
strip -Sx $file
done
fi
# Copy over the tblgen utility.