diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/clang/scripts/update.sh | 4 | ||||
-rwxr-xr-x | tools/clang/scripts/update_iwyu.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/clang/scripts/update.sh b/tools/clang/scripts/update.sh index a2bb824..b47cb5f 100755 --- a/tools/clang/scripts/update.sh +++ b/tools/clang/scripts/update.sh @@ -6,7 +6,7 @@ # This script will check out llvm and clang into third_party/llvm and build it. # Do NOT CHANGE this if you don't know what you're doing -- see -# http://code.google.com/p/chromium/wiki/UpdatingClang +# https://code.google.com/p/chromium/wiki/UpdatingClang # Reverting problematic clang rolls is safe, though. CLANG_REVISION=145240 @@ -17,7 +17,7 @@ CLANG_DIR="${LLVM_DIR}/tools/clang" STAMP_FILE="${LLVM_BUILD_DIR}/cr_build_revision" # ${A:-a} returns $A if it's set, a else. -LLVM_REPO_URL=${LLVM_URL:-http://llvm.org/svn/llvm-project} +LLVM_REPO_URL=${LLVM_URL:-https://llvm.org/svn/llvm-project} # Die if any command dies. set -e diff --git a/tools/clang/scripts/update_iwyu.sh b/tools/clang/scripts/update_iwyu.sh index 0e3f675..6419bfa 100755 --- a/tools/clang/scripts/update_iwyu.sh +++ b/tools/clang/scripts/update_iwyu.sh @@ -21,7 +21,7 @@ LLVM_DIR="${THIS_DIR}"/../../../third_party/llvm IWYU_DIR="${LLVM_DIR}"/tools/clang/tools/include-what-you-use # Check out. -svn co --force http://include-what-you-use.googlecode.com/svn/trunk/ \ +svn co --force https://include-what-you-use.googlecode.com/svn/trunk/ \ "${IWYU_DIR}" # Build iwyu. |