summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/ci/ccache-c.in9
-rw-r--r--scripts/ci/ccache-cxx.in9
2 files changed, 0 insertions, 18 deletions
diff --git a/scripts/ci/ccache-c.in b/scripts/ci/ccache-c.in
deleted file mode 100644
index f75d456e5d..0000000000
--- a/scripts/ci/ccache-c.in
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# Xcode generator doesn't include the compiler as the
-# first argument, Ninja and Makefiles do. Handle both cases.
-if [[ "$1" = "${CMAKE_C_COMPILER}" ]] ; then
- shift
-fi
-
-exec "${C_LAUNCHER}" "${CMAKE_C_COMPILER}" "$@"
diff --git a/scripts/ci/ccache-cxx.in b/scripts/ci/ccache-cxx.in
deleted file mode 100644
index 81831ad4dc..0000000000
--- a/scripts/ci/ccache-cxx.in
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# Xcode generator doesn't include the compiler as the
-# first argument, Ninja and Makefiles do. Handle both cases.
-if [[ "$1" = "${CMAKE_CXX_COMPILER}" ]] ; then
- shift
-fi
-
-exec "${CXX_LAUNCHER}" "${CMAKE_CXX_COMPILER}" "$@"