From 7844b354a500713e6d3952ba676447d41cf079dd Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 29 Oct 2025 13:44:26 -0400 Subject: [PATCH] Use $(AR) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index be5d1ed..9b19ed9 100644 --- a/Makefile +++ b/Makefile @@ -111,7 +111,7 @@ CPPFLAGS += \ -DCONFIG_SELF_INIT=$(CONFIG_SELF_INIT) $(OUT)/libhardened_malloc$(SUFFIX).a: $(OBJECTS) | $(OUT) - ar rcs $@ $^ + $(AR) rcs $@ $^ $(OUT)/libhardened_malloc$(SUFFIX).so: $(OBJECTS) | $(OUT) $(CC) $(CFLAGS) $(LDFLAGS) -shared $^ $(LDLIBS) -o $@