diff options
author | bde <bde@FreeBSD.org> | 1997-01-10 05:18:23 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-01-10 05:18:23 +0000 |
commit | 7ff72760ea8ba89a77b2ab5d5ad099ef9a4e8ec6 (patch) | |
tree | ab6f947788ee39adeb45643ac9828187974ce130 /usr.sbin | |
parent | 79c083d0ff6dd30d025f115ab32c65f7ef8c3df3 (diff) | |
download | FreeBSD-src-7ff72760ea8ba89a77b2ab5d5ad099ef9a4e8ec6.zip FreeBSD-src-7ff72760ea8ba89a77b2ab5d5ad099ef9a4e8ec6.tar.gz |
Oops, the last change added an extra ${LIBSCRYPT} to ${DPADD}, but
it should have reordered the existing one (so that ${DPADD} can be
compared with ${LDADD}).
Use ${} consistently.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/sup/sup/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/sup/supscan/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/sup/sup/Makefile b/usr.sbin/sup/sup/Makefile index 4a372ce..416d13b 100644 --- a/usr.sbin/sup/sup/Makefile +++ b/usr.sbin/sup/sup/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1996/06/24 04:25:57 jkh Exp $ +# $Id: Makefile,v 1.5 1996/09/05 17:15:48 bde Exp $ PROG= sup SRCS= supcmain.c supcvers.c supcparse.c supcname.c supcmisc.c supcmeat.c @@ -13,7 +13,7 @@ LIBOBJ= ${.OBJDIR}/../lib LIBOBJ= ${LIBSRC} .endif -DPADD= $(LIBCRYPT) $(LIBOBJ)/libsup.a ${LIBCRYPT} +DPADD= ${LIBOBJ}/libsup.a ${LIBCRYPT} LDADD= -L${LIBOBJ} -lsup -lcrypt .include <bsd.prog.mk> diff --git a/usr.sbin/sup/supscan/Makefile b/usr.sbin/sup/supscan/Makefile index 7c2a6aa..08a2e68 100644 --- a/usr.sbin/sup/supscan/Makefile +++ b/usr.sbin/sup/supscan/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1996/06/24 04:26:03 jkh Exp $ +# $Id: Makefile,v 1.3 1996/09/05 17:16:06 bde Exp $ PROG= supscan SRCS= supscan.c @@ -14,7 +14,7 @@ LIBOBJ= ${.OBJDIR}/../lib LIBOBJ= ${LIBSRC} .endif -DPADD= $(LIBCRYPT) $(LIBOBJ)/libsup.a ${LIBCRYPT} +DPADD= ${LIBOBJ}/libsup.a ${LIBCRYPT} LDADD= -L${LIBOBJ} -lsup -lcrypt .include <bsd.prog.mk> |