Bug 1426892: Use ccache on buildbot; r?Fallen.
MozReview-Commit-ID: FwVfmH4ae6S
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Setup for build cache
#
# If we're here, we are on buildbot, so just use ccache locally.
if test -z "$NO_CACHE"; then
# if we're on windows, disable ccache
case "${SYSTEMROOT}" in
*Windows)
;;
*)
export CCACHE=ccache
;;
esac
fi