forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-cdr/isomaster: Respect variable AR
Closes: https://bugs.gentoo.org/740138 Signed-off-by: Sebastian Pipping <[email protected]> Package-Manager: Portage-3.0.14, Repoman-3.0.2
- Loading branch information
Showing
2 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 1553ea30148f69bce545b3a79ab3f7847566c50a Mon Sep 17 00:00:00 2001 | ||
From: Sebastian Pipping <[email protected]> | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters