blob: 12c5ef4c3621426bff17b9a3131a0244ec213c22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
From 1553ea30148f69bce545b3a79ab3f7847566c50a Mon Sep 17 00:00:00 2001
From: Sebastian Pipping <sebastian@pipping.org>
Date: Sat, 6 Feb 2021 19:36:33 +0100
Subject: [PATCH] Makefile: Give external AR="$(tc-getAR)" a chance to win
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index f005099..98808f8 100644
--- a/Makefile
+++ b/Makefile
@@ -48,7 +48,7 @@ OPTFLAGS ?= -Wall
# programs used in the Makefiles:
export CC ?= gcc
-export AR = ar
+export AR ?= ar
export RM = rm -f
export INSTALL = install
export CP = cp
--
2.30.0
|