For backwards compatibility with FreeBSD 2.2.x due to it's

(apparent) lack of 's' support in ar.
       change:
               ar rcs libdbf.a ...
       to:
               ar rc libdbf.a ...
               ranlib libdbf.a

PR:		14139
Submitted by:	maintainer
This commit is contained in:
Chris Piazza 1999-10-05 16:06:21 +00:00
parent d37743a06f
commit 8f82bcdb97
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=22174

View File

@ -1,5 +1,5 @@
--- Makefile.orig Thu Aug 26 09:49:08 1999
+++ Makefile Sat Oct 2 23:19:17 1999
+++ Makefile Mon Oct 4 19:01:45 1999
@@ -2,17 +2,17 @@
# Maarten Boekhold (boekhold@cindy.et.tudelft.nl) 1995
@ -31,3 +31,13 @@
# Set this if your system needs extra libraries
#
@@ -42,7 +42,8 @@
all: dbf2mysql mysql2dbf
libdbf.a: dbf.o endian.o
- $(AR) rcs libdbf.a dbf.o endian.o
+ $(AR) rc libdbf.a dbf.o endian.o
+ $(RANLIB) libdbf.a
dbf2mysql: dbf2mysql.o libdbf.a
$(CC) $(CFLAGS) -s -L. $(MYSQLLIB) -o $@ dbf2mysql.o -ldbf \