From 0a112f6f77e9fbb11ae0dc39c3a53e76e0710bc1 Mon Sep 17 00:00:00 2001 From: Greg Richardson Date: Mon, 6 Nov 2023 13:28:58 -0700 Subject: [PATCH] Fix: ar variable in Makefile to inherit upstream ar command (#217) --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5b266c8c..7b66cd51 100644 --- a/Makefile +++ b/Makefile @@ -62,7 +62,8 @@ CLEANLIBS = $(ARLIB) CLEANOBJS = $(OBJ_FILES) CLEANFILES = $(PGDIRBZ2) -AR = ar rs +AR ?= ar +AR := $(AR) rs INSTALL = install LN_S = ln -s RM = rm -f