diff options
author | espie <> | 2017-07-09 21:23:19 +0000 |
---|---|---|
committer | espie <> | 2017-07-09 21:23:19 +0000 |
commit | 6cc50d61aa43548ae9a84a222bf647b3ec6a7922 (patch) | |
tree | b36835314174b169e1084b04a3fba0c285a865f3 | |
parent | 638b1340312b169ab5d0e90d9fc90d3daf282513 (diff) | |
download | openbsd-6cc50d61aa43548ae9a84a222bf647b3ec6a7922.tar.gz openbsd-6cc50d61aa43548ae9a84a222bf647b3ec6a7922.tar.bz2 openbsd-6cc50d61aa43548ae9a84a222bf647b3ec6a7922.zip |
remove redundant variable declarations in Makefiles, since those arelibressl-v2.6.0
the default.
okay millert@
-rw-r--r-- | src/usr.bin/openssl/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/Makefile b/src/usr.bin/openssl/Makefile index c862418768..11ecd1b96c 100644 --- a/src/usr.bin/openssl/Makefile +++ b/src/usr.bin/openssl/Makefile | |||
@@ -1,11 +1,10 @@ | |||
1 | # $OpenBSD: Makefile,v 1.8 2017/05/07 04:18:47 jsg Exp $ | 1 | # $OpenBSD: Makefile,v 1.9 2017/07/09 21:23:19 espie Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | 4 | ||
5 | PROG= openssl | 5 | PROG= openssl |
6 | LDADD= -lssl -lcrypto | 6 | LDADD= -lssl -lcrypto |
7 | DPADD= ${LIBSSL} ${LIBCRYPTO} | 7 | DPADD= ${LIBSSL} ${LIBCRYPTO} |
8 | MAN1= openssl.1 | ||
9 | 8 | ||
10 | CFLAGS+= -Wall | 9 | CFLAGS+= -Wall |
11 | CFLAGS+= -Wformat | 10 | CFLAGS+= -Wformat |