#!/bin/sh

[ "${0##*/}" = "ccache" ] &&
    printf "Please, use one of the compiler links in\n/usr/local/libexec/ccache/world\nto invoke ccache\n" >&2 &&
    exit 1

unset CCACHE_PATH
export CCACHE_COMPILERCHECK=content
exec /usr/local/libexec/ccache/${0##*/} "$@"
