kache 0.23.0

Zero-copy, content-addressed build cache for Rust, C/C++ and more, with S3 and shared-filesystem remotes.
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

# Recreate the compiler-name farm from the installed binary so the
# names cannot drift from compiler::shim::SHIM_NAMES.
case "$1" in
configure)
  kache install-shims --force /usr/lib/kache >/dev/null
  ;;
esac

exit 0