Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 289e6fd

Browse files
committed
Do not use 'ar cq' to build library archives, use 'ar cr' instead.
1 parent cbc5f4f commit 289e6fd

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/makefiles/Makefile.bsdi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AROPT = cq
1+
AROPT = cr
22

33
# bsdi 4.0 and later is ELF
44
DLSUFFIX = .so

src/makefiles/Makefile.freebsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AROPT = cq
1+
AROPT = cr
22

33
ifdef ELF_SYSTEM
44
export_dynamic = -export-dynamic

src/makefiles/Makefile.netbsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AROPT = cq
1+
AROPT = cr
22

33
ifdef ELF_SYSTEM
44
export_dynamic = -Wl,-E

src/makefiles/Makefile.openbsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AROPT = cq
1+
AROPT = cr
22

33
ifdef ELF_SYSTEM
44
export_dynamic = -Wl,-E

src/makefiles/Makefile.sco

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
override CFLAGS += -dy
22
export_dynamic = -W l,-Bexport
3-
AROPT = cq
3+
AROPT = cr
44

55
DLSUFFIX = .so
66
CFLAGS_SL = -K PIC

0 commit comments

Comments
 (0)