From 54bccae924e317bc1b979383778845fc98a0e152 Mon Sep 17 00:00:00 2001 From: Greg Richardson Date: Fri, 16 Feb 2024 15:17:41 -0700 Subject: [PATCH] fix(makefile): ar var to inherit ar command --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a6ed995f..2f1edb68 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