diff options
author | nate <nate@FreeBSD.org> | 1995-03-04 17:39:24 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 1995-03-04 17:39:24 +0000 |
commit | 112ef6e028be002eaa5f27ebaaadfa7faccabadd (patch) | |
tree | b8ff62050886105c381b91d88ff6a5055f0ccac1 /lib/librpcsvc | |
parent | 2c92668cd970dc8344f40e3ceaa875f152b573b4 (diff) | |
download | FreeBSD-src-112ef6e028be002eaa5f27ebaaadfa7faccabadd.zip FreeBSD-src-112ef6e028be002eaa5f27ebaaadfa7faccabadd.tar.gz |
If we are going to set the OBJS target, don't add to the old target. This
caused the RPC libraries to contain two versions of the same file.
Diffstat (limited to 'lib/librpcsvc')
-rw-r--r-- | lib/librpcsvc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/librpcsvc/Makefile b/lib/librpcsvc/Makefile index a2a4cd44..11779f7 100644 --- a/lib/librpcsvc/Makefile +++ b/lib/librpcsvc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.10 (Berkeley) 6/24/90 -# $Id: Makefile,v 1.2 1994/08/10 04:25:19 wollman Exp $ +# $Id: Makefile,v 1.3 1994/08/28 17:48:43 bde Exp $ .PATH: ${DESTDIR}/usr/include/rpcsvc @@ -33,4 +33,4 @@ NOMAN= noman fi @${RPCCOM} -c ${*F}.x -o ${.TARGET} -OBJS+= ${RPCSRCS:R:S/$/_xdr.o/g} +OBJS= ${RPCSRCS:R:S/$/_xdr.o/g} |