diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-17 23:51:17 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-17 23:51:17 +0000 |
commit | 156720e503c1cc0d01d2c4ac947da8201344b37f (patch) | |
tree | f6cd5e4327fb7ccbde4648e447c902a175f0356d /tools/clang | |
parent | 1ff3f9b16146e85337fe493bb411c322a22e2f9a (diff) | |
download | chromium_src-156720e503c1cc0d01d2c4ac947da8201344b37f.zip chromium_src-156720e503c1cc0d01d2c4ac947da8201344b37f.tar.gz chromium_src-156720e503c1cc0d01d2c4ac947da8201344b37f.tar.bz2 |
Remove --with-tools-extra option from clang update script
This is no longer needed now that clang-format is in the main clang
repository.
BUG=none
R=thakis@chromium.org
Review URL: https://codereview.chromium.org/17329002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206841 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/clang')
-rwxr-xr-x | tools/clang/scripts/update.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tools/clang/scripts/update.sh b/tools/clang/scripts/update.sh index efb3460..510c377 100755 --- a/tools/clang/scripts/update.sh +++ b/tools/clang/scripts/update.sh @@ -34,7 +34,6 @@ mac_only= run_tests= bootstrap= with_android=yes -with_tools_extra= chrome_tools="plugins" if [[ "${OS}" = "Darwin" ]]; then @@ -58,9 +57,6 @@ while [[ $# > 0 ]]; do --without-android) with_android= ;; - --with-tools-extra) - with_tools_extra=yes - ;; --with-chrome-tools) shift if [[ $# == 0 ]]; then @@ -76,7 +72,6 @@ while [[ $# > 0 ]]; do echo "--mac-only: Do initial download only on Mac systems." echo "--run-tests: Run tests after building. Only for local builds." echo "--without-android: Don't build ASan Android runtime library." - echo "--with-tools-extra: Also build the clang-tools-extra repository." echo "--with-chrome-tools: Select which chrome tools to build." \ "Defaults to plugins." echo " Example: --with-chrome-tools 'plugins empty-string'" @@ -248,15 +243,6 @@ echo Getting compiler-rt r"${CLANG_REVISION}" in "${COMPILER_RT_DIR}" svn co --force "${LLVM_REPO_URL}/compiler-rt/trunk@${CLANG_REVISION}" \ "${COMPILER_RT_DIR}" -if [[ -n "${with_tools_extra}" ]]; then - echo Getting clang-tools-extra r"${CLANG_REVISION}" in \ - "${CLANG_TOOLS_EXTRA_DIR}" - svn co --force "${LLVM_REPO_URL}/clang-tools-extra/trunk@${CLANG_REVISION}" \ - "${CLANG_TOOLS_EXTRA_DIR}" -else - rm -rf "${CLANG_TOOLS_EXTRA_DIR}" -fi - # Echo all commands. set -x |