diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-12-07 19:43:49 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-12-07 19:43:49 +0000 |
commit | 289e6fd2a424bfdd30f3c60415ff2f86a21f0623 (patch) | |
tree | 45add9ceab3afa884a48d147b6a01805ae7fb55d /src | |
parent | cbc5f4f127f37510fa000ddd8a109c8385796176 (diff) |
Do not use 'ar cq' to build library archives, use 'ar cr' instead.
Diffstat (limited to 'src')
-rw-r--r-- | src/makefiles/Makefile.bsdi | 2 | ||||
-rw-r--r-- | src/makefiles/Makefile.freebsd | 2 | ||||
-rw-r--r-- | src/makefiles/Makefile.netbsd | 2 | ||||
-rw-r--r-- | src/makefiles/Makefile.openbsd | 2 | ||||
-rw-r--r-- | src/makefiles/Makefile.sco | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/makefiles/Makefile.bsdi b/src/makefiles/Makefile.bsdi index b83db6f67a8..a95fd312346 100644 --- a/src/makefiles/Makefile.bsdi +++ b/src/makefiles/Makefile.bsdi @@ -1,4 +1,4 @@ -AROPT = cq +AROPT = cr # bsdi 4.0 and later is ELF DLSUFFIX = .so diff --git a/src/makefiles/Makefile.freebsd b/src/makefiles/Makefile.freebsd index b9ca6579f90..91a45a63632 100644 --- a/src/makefiles/Makefile.freebsd +++ b/src/makefiles/Makefile.freebsd @@ -1,4 +1,4 @@ -AROPT = cq +AROPT = cr ifdef ELF_SYSTEM export_dynamic = -export-dynamic diff --git a/src/makefiles/Makefile.netbsd b/src/makefiles/Makefile.netbsd index 425267b81b7..a9fd5a43b40 100644 --- a/src/makefiles/Makefile.netbsd +++ b/src/makefiles/Makefile.netbsd @@ -1,4 +1,4 @@ -AROPT = cq +AROPT = cr ifdef ELF_SYSTEM export_dynamic = -Wl,-E diff --git a/src/makefiles/Makefile.openbsd b/src/makefiles/Makefile.openbsd index 6f2611e0634..eeaa40743f4 100644 --- a/src/makefiles/Makefile.openbsd +++ b/src/makefiles/Makefile.openbsd @@ -1,4 +1,4 @@ -AROPT = cq +AROPT = cr ifdef ELF_SYSTEM export_dynamic = -Wl,-E diff --git a/src/makefiles/Makefile.sco b/src/makefiles/Makefile.sco index a68f92e6251..810f75947e2 100644 --- a/src/makefiles/Makefile.sco +++ b/src/makefiles/Makefile.sco @@ -1,6 +1,6 @@ override CFLAGS += -dy export_dynamic = -W l,-Bexport -AROPT = cq +AROPT = cr DLSUFFIX = .so CFLAGS_SL = -K PIC |