Commit 0adedd15 authored by palmer@chromium.org's avatar palmer@chromium.org

Make as many URLs as possible be HTTPS.

We're downloading code here, after all!
Review URL: http://codereview.chromium.org/8772015

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112547 0039d316-1c4b-4281-b951-d872f2087c98
parent ada02b31
......@@ -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
......
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment