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 authored and lfittl committed Feb 17, 2024
1 parent 95c1f0b commit e7c14fe
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 e7c14fe

Please sign in to comment.