summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-10-17 13:55:22 +0000
committerbde <bde@FreeBSD.org>1998-10-17 13:55:22 +0000
commit34ae7fd4fe5929df5a41df97583f1e6901db6997 (patch)
tree85c58daa80ff6cee52fe39c85e1db71320ccfa3d
parentd0ec9c47b0f8e7285d0956cc409bbf7cbe571c17 (diff)
downloadFreeBSD-src-34ae7fd4fe5929df5a41df97583f1e6901db6997.zip
FreeBSD-src-34ae7fd4fe5929df5a41df97583f1e6901db6997.tar.gz
Fixed missing libraries in DPADD.
-rw-r--r--usr.sbin/amd/amd/Makefile6
-rw-r--r--usr.sbin/amd/fixmount/Makefile6
-rw-r--r--usr.sbin/amd/hlfsd/Makefile6
3 files changed, 9 insertions, 9 deletions
diff --git a/usr.sbin/amd/amd/Makefile b/usr.sbin/amd/amd/Makefile
index 49bdcac..48a3ec2 100644
--- a/usr.sbin/amd/amd/Makefile
+++ b/usr.sbin/amd/amd/Makefile
@@ -3,7 +3,7 @@
# Makefile for amd
# This file is under a "BSD" copyright (c) by David O'Brien 1998
#
-# $Id: Makefile,v 1.14 1998/08/27 08:09:40 obrien Exp $
+# $Id: Makefile,v 1.15 1998/08/30 19:59:49 gpalmer Exp $
#
.PATH: ${.CURDIR}/../../../contrib/amd/amd
@@ -25,8 +25,8 @@ SRCS+= srvr_amfs_auto.c srvr_nfs.c
CFLAGS+= -I${.CURDIR}/../../../contrib/amd/amd
-DPADD+= ${LIBAMU}
-LDADD+= ${LIBAMU} -lrpcsvc
+DPADD= ${LIBAMU} ${LIBRPCSVC}
+LDADD= ${LIBAMU} -lrpcsvc
CLEANFILES+= conf_parse.c conf_parse.h conf_tok.c
diff --git a/usr.sbin/amd/fixmount/Makefile b/usr.sbin/amd/fixmount/Makefile
index b1c2a97..3ea214f 100644
--- a/usr.sbin/amd/fixmount/Makefile
+++ b/usr.sbin/amd/fixmount/Makefile
@@ -3,7 +3,7 @@
# Makefile for amd
# This file is under a "BSD" copyright (c) by David O'Brien 1998
#
-# $Id: Makefile,v 1.1 1998/08/27 08:09:41 obrien Exp $
+# $Id: Makefile,v 1.2 1998/08/30 19:59:52 gpalmer Exp $
#
.PATH: ${.CURDIR}/../../../contrib/amd/fixmount \
@@ -20,7 +20,7 @@ SRCS+= mount.h nfs_prot.h
# These would be links created by the GNU-style configure
SRCS+= checkmount_bsd44.c
-DPADD+= ${LIBAMU}
-LDADD+= ${LIBAMU} -lrpcsvc
+DPADD= ${LIBAMU} ${LIBRPCSVC}
+LDADD= ${LIBAMU} -lrpcsvc
.include <bsd.prog.mk>
diff --git a/usr.sbin/amd/hlfsd/Makefile b/usr.sbin/amd/hlfsd/Makefile
index 693b509..3cf19bc 100644
--- a/usr.sbin/amd/hlfsd/Makefile
+++ b/usr.sbin/amd/hlfsd/Makefile
@@ -3,7 +3,7 @@
# Makefile for amd
# This file is under a "BSD" copyright (c) by David O'Brien 1998
#
-# $Id: Makefile,v 1.1 1998/08/27 08:09:41 obrien Exp $
+# $Id: Makefile,v 1.2 1998/08/30 19:59:52 gpalmer Exp $
#
.PATH: ${.CURDIR}/../../../contrib/amd/hlfsd
@@ -15,7 +15,7 @@ SRCS= hlfsd.c homedir.c nfs_prot_svc.c stubs.c
CFLAGS+= -I${.CURDIR}/../../../contrib/amd/hlfsd
-DPADD+= ${LIBAMU}
-LDADD+= ${LIBAMU} -lrpcsvc
+DPADD= ${LIBAMU} ${LIBRPCSVC}
+LDADD= ${LIBAMU} -lrpcsvc
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud