Set ARFLAGS to -r on Alpine Linux

This commit is contained in:
Jeffrey Walton 2023-07-19 15:52:48 -04:00
parent 6ecc789df1
commit a75a7d87ff
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -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