diff options
| author | Peter Jones <pjones@redhat.com> | 2021-03-08 12:42:21 -0500 |
|---|---|---|
| committer | Jan Setje-Eilers <73182357+jsetje@users.noreply.github.com> | 2021-03-09 13:52:53 -0800 |
| commit | 7d5df1cebdbdc3ed11cde165a752cf358878aa8a (patch) | |
| tree | 02433cd8c51f40885f059c8137f4154dbd426037 /Cryptlib | |
| parent | 1954ef164a55cbc4369f513cca3fb43f3550d81a (diff) | |
| download | efi-boot-shim-7d5df1cebdbdc3ed11cde165a752cf358878aa8a.tar.gz efi-boot-shim-7d5df1cebdbdc3ed11cde165a752cf358878aa8a.zip | |
static analysis: make our build targets work better
This improves our static analysis targets by making them work better
with our make variables, and inhibits the use of ccache while building
those.
Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'Cryptlib')
| -rw-r--r-- | Cryptlib/Makefile | 3 | ||||
| -rw-r--r-- | Cryptlib/OpenSSL/Makefile | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Cryptlib/Makefile b/Cryptlib/Makefile index 5bae10c9..bc5681c5 100644 --- a/Cryptlib/Makefile +++ b/Cryptlib/Makefile @@ -1,3 +1,6 @@ +ifneq ($(CCACHE_DISABLE),) +export CCACHE_DISABLE +endif INCLUDES = -I$(TOPDIR) -iquote $(TOPDIR) -I$(TOPDIR)/Include \ $(EFI_INCLUDES) -I$(shell $(CC) -print-file-name=include) diff --git a/Cryptlib/OpenSSL/Makefile b/Cryptlib/OpenSSL/Makefile index 6a58dbaa..6ff58e47 100644 --- a/Cryptlib/OpenSSL/Makefile +++ b/Cryptlib/OpenSSL/Makefile @@ -1,3 +1,6 @@ +ifneq ($(CCACHE_DISABLE),) +export CCACHE_DISABLE +endif DEFINES = -DL_ENDIAN \ -D_CRT_SECURE_NO_DEPRECATE \ |
