Skip to content

Commit

Permalink
fix(makefile): ar var to inherit ar command
Browse files Browse the repository at this point in the history
  • Loading branch information
gregnr committed Feb 16, 2024
1 parent 95c1f0b commit 7a03e2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7a03e2c

Please sign in to comment.