From: Richard Levitte Date: Mon, 7 Mar 2016 10:22:00 +0000 (+0100) Subject: Only enable ccache if it's available X-Git-Tag: OpenSSL_1_1_0-pre4~238 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c9aad4ff4f9f37a2d8685db4b1ce310452f41e89;p=oweals%2Fopenssl.git Only enable ccache if it's available Reviewed-by: Emilia Käsper --- diff --git a/.travis.yml b/.travis.yml index dff2f94978..ac8d81295d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,7 +64,9 @@ before_script: srcdir=../_srcdir; mkdir _build; cd _build; - CC="ccache $CC"; + if which ccache >/dev/null; then + CC="ccache $CC"; + fi else srcdir=.; cd _srcdist;