Skip to content

Commit

Permalink
Fix: ar variable in Makefile to inherit upstream ar command (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregnr authored Nov 6, 2023
1 parent 009f19d commit 0a112f6
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 0a112f6

Please sign in to comment.