Skip to content

Commit 635b551

Browse files
committed
Fix ARFLAGS to be compatible with old RHEL5 ar.
1 parent f7bbe53 commit 635b551

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mk/libuv/x86_64/unix/linux/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ CXXFLAGS.target ?= $(CXXFLAGS)
5858
LINK.target ?= $(LINK)
5959
LDFLAGS.target ?= $(LDFLAGS)
6060
AR.target ?= $(AR)
61-
ARFLAGS.target ?= crsT
61+
ARFLAGS.target ?= crs
6262

6363
# N.B.: the logic of which commands to run should match the computation done
6464
# in gyp's make.py where ARFLAGS.host etc. is computed.
@@ -71,7 +71,7 @@ CXXFLAGS.host ?=
7171
LINK.host ?= g++
7272
LDFLAGS.host ?=
7373
AR.host ?= ar
74-
ARFLAGS.host := crsT
74+
ARFLAGS.host := crs
7575

7676
# Define a dir function that can handle spaces.
7777
# http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions

0 commit comments

Comments
 (0)