Module Name: src
Committed By: riastradh
Date: Wed Aug 26 15:49:07 UTC 2020
Modified Files:
src/usr.sbin/wgconfig: Makefile
Log Message:
wgconfig does not need libcrypt.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/usr.sbin/wgconfig/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/wgconfig/Makefile
diff -u src/usr.sbin/wgconfig/Makefile:1.1 src/usr.sbin/wgconfig/Makefile:1.2
--- src/usr.sbin/wgconfig/Makefile:1.1 Thu Aug 20 21:28:02 2020
+++ src/usr.sbin/wgconfig/Makefile Wed Aug 26 15:49:07 2020
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.1 2020/08/20 21:28:02 riastradh Exp $
+# $NetBSD: Makefile,v 1.2 2020/08/26 15:49:07 riastradh Exp $
PROG= wgconfig
MAN= wgconfig.8
-DPADD+= ${LIBPROP} ${LIBCRYPT} ${LIBUTIL}
-LDADD+= -lprop -lcrypt -lutil
+DPADD+= ${LIBPROP} ${LIBUTIL}
+LDADD+= -lprop -lutil
.include <bsd.prog.mk>