Skip to content

Commit

Permalink
Set ARFLAGS to -r on Alpine Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Jul 19, 2023
1 parent 6ecc789 commit a75a7d8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,11 @@ endif

# We honor ARFLAGS, but the "v" option used by default causes a noisy make
ifeq ($(ARFLAGS),rv)
ARFLAGS = r
ARFLAGS = r
else
ifeq ($(ARFLAGS),-rv)
ARFLAGS = -r
endif
endif

# Original MinGW targets Win2k by default, but lacks proper Win2k support
Expand Down

0 comments on commit a75a7d8

Please sign in to comment.