Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 1 | From f89d6d6d23e0dacfd0008f686a457d536edc406a Mon Sep 17 00:00:00 2001 |
| 2 | From: Randy Witt <randy.e.witt@intel.com> |
| 3 | Date: Fri, 16 Oct 2020 16:54:30 -0700 |
| 4 | Subject: [PATCH] Makefile: Allow for CC and AR to be overridden |
| 5 | |
| 6 | The Makefile previously allowed for this but it was removed upstream in |
| 7 | commit 7763cf316d7896fa05b816a46998f0827ab6e6eb. |
| 8 | |
| 9 | Signed-off-by: Randy Witt <randy.e.witt@intel.com> |
| 10 | |
| 11 | Upstream-Status: Inappropriate [other] |
| 12 | |
| 13 | --- |
| 14 | Makefile | 4 ++-- |
| 15 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 16 | |
| 17 | diff --git a/Makefile b/Makefile |
| 18 | index c3ebbd7..2176835 100644 |
| 19 | --- a/Makefile |
| 20 | +++ b/Makefile |
| 21 | @@ -1,6 +1,6 @@ |
| 22 | VERSION = 1.9 |
| 23 | -CC = $(CROSS_COMPILE)gcc |
| 24 | -AR = $(CROSS_COMPILE)ar |
| 25 | +CC ?= $(CROSS_COMPILE)gcc |
| 26 | +AR ?= $(CROSS_COMPILE)ar |
| 27 | |
| 28 | OBJDIR = bld |
| 29 | |