diff options
Diffstat (limited to 'meta/recipes-rt/rt-tests/files/0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch')
-rw-r--r-- | meta/recipes-rt/rt-tests/files/0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/recipes-rt/rt-tests/files/0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch b/meta/recipes-rt/rt-tests/files/0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch index c18928ed02..8fd94b176c 100644 --- a/meta/recipes-rt/rt-tests/files/0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch +++ b/meta/recipes-rt/rt-tests/files/0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From caaa142826504ad0375f9d21c558f10f31305cdb Mon Sep 17 00:00:00 2001 | 1 | From f89d6d6d23e0dacfd0008f686a457d536edc406a Mon Sep 17 00:00:00 2001 |
2 | From: Randy Witt <randy.e.witt@intel.com> | 2 | From: Randy Witt <randy.e.witt@intel.com> |
3 | Date: Fri, 16 Oct 2020 16:54:30 -0700 | 3 | Date: Fri, 16 Oct 2020 16:54:30 -0700 |
4 | Subject: [PATCH] Makefile: Allow for CC and AR to be overridden | 4 | Subject: [PATCH] Makefile: Allow for CC and AR to be overridden |
@@ -9,16 +9,17 @@ commit 7763cf316d7896fa05b816a46998f0827ab6e6eb. | |||
9 | Signed-off-by: Randy Witt <randy.e.witt@intel.com> | 9 | Signed-off-by: Randy Witt <randy.e.witt@intel.com> |
10 | 10 | ||
11 | Upstream-Status: Inappropriate [other] | 11 | Upstream-Status: Inappropriate [other] |
12 | |||
12 | --- | 13 | --- |
13 | Makefile | 4 ++-- | 14 | Makefile | 4 ++-- |
14 | 1 file changed, 2 insertions(+), 2 deletions(-) | 15 | 1 file changed, 2 insertions(+), 2 deletions(-) |
15 | 16 | ||
16 | diff --git a/Makefile b/Makefile | 17 | diff --git a/Makefile b/Makefile |
17 | index 05fc5ed..7a289c8 100644 | 18 | index c3ebbd7..2176835 100644 |
18 | --- a/Makefile | 19 | --- a/Makefile |
19 | +++ b/Makefile | 20 | +++ b/Makefile |
20 | @@ -1,6 +1,6 @@ | 21 | @@ -1,6 +1,6 @@ |
21 | VERSION = 1.8 | 22 | VERSION = 1.9 |
22 | -CC = $(CROSS_COMPILE)gcc | 23 | -CC = $(CROSS_COMPILE)gcc |
23 | -AR = $(CROSS_COMPILE)ar | 24 | -AR = $(CROSS_COMPILE)ar |
24 | +CC ?= $(CROSS_COMPILE)gcc | 25 | +CC ?= $(CROSS_COMPILE)gcc |