Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: tools/clang/scripts/update.sh

Issue 49983003: Roll Clang 192869:193323 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use rm -rf for *.dylib Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/scripts/update.sh
diff --git a/tools/clang/scripts/update.sh b/tools/clang/scripts/update.sh
index b0a1a6895fca80f587b27ef59ca116c53e55aac8..aef39e80ed0d816ba7ee4f1c7634278da6b8a0e8 100755
--- a/tools/clang/scripts/update.sh
+++ b/tools/clang/scripts/update.sh
@@ -8,7 +8,7 @@
# Do NOT CHANGE this if you don't know what you're doing -- see
# https://code.google.com/p/chromium/wiki/UpdatingClang
# Reverting problematic clang rolls is safe, though.
-CLANG_REVISION=192869
+CLANG_REVISION=193323
THIS_DIR="$(dirname "${0}")"
LLVM_DIR="${THIS_DIR}/../../../third_party/llvm"
@@ -141,7 +141,7 @@ for DIR in "${XCODEBUILD_DIR}" "${MAKE_DIR}/Debug" "${MAKE_DIR}/Release"; do
find "${DIR}" -name '*.o' -exec rm {} +
find "${DIR}" -name '*.o.d' -exec rm {} +
find "${DIR}" -name '*.gch' -exec rm {} +
- find "${DIR}" -name '*.dylib' -exec rm {} +
+ find "${DIR}" -name '*.dylib' -exec rm -rf {} +
Nico 2013/10/31 18:11:43 why is this needed?
find "${DIR}" -name 'SharedPrecompiledHeaders' -exec rm -rf {} +
fi
done
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698