diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 22:32:56 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 22:32:56 +0000 |
commit | 5c5db460df43c0ab17b94c25c8e288a1cb4f63a6 (patch) | |
tree | b2c3674afcc39f8b67a6227c8530a8790e2983a4 /tools/clang | |
parent | d24f426237db7eabda4f2ff8f7a68cb2921ff032 (diff) | |
download | chromium_src-5c5db460df43c0ab17b94c25c8e288a1cb4f63a6.zip chromium_src-5c5db460df43c0ab17b94c25c8e288a1cb4f63a6.tar.gz chromium_src-5c5db460df43c0ab17b94c25c8e288a1cb4f63a6.tar.bz2 |
clang update script: In bootstrap mode, don't skip building if configure has run already.
No real effect in practice since the package.sh script always does full
clobbers, so configure has never run if update.sh is called by that. Only
changes things for people who do local bootstrap builds without the intent to
upload the generated clang binaries.
BUG=none
R=hans@chromium.org
Review URL: https://codereview.chromium.org/19775005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212456 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/clang')
-rwxr-xr-x | tools/clang/scripts/update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/clang/scripts/update.sh b/tools/clang/scripts/update.sh index 15cf9f3..c664df6 100755 --- a/tools/clang/scripts/update.sh +++ b/tools/clang/scripts/update.sh @@ -270,8 +270,8 @@ if [[ -n "${bootstrap}" ]]; then --disable-pthreads \ --without-llvmgcc \ --without-llvmgxx - MACOSX_DEPLOYMENT_TARGET=10.5 make -j"${NUM_JOBS}" fi + MACOSX_DEPLOYMENT_TARGET=10.5 make -j"${NUM_JOBS}" if [[ -n "${run_tests}" ]]; then make check-all fi |