diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2015-10-23 09:13:01 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2015-10-23 09:13:01 +0000 |
commit | ae94877eba32146a4c023a5ab030ba7b2eb9069a (patch) | |
tree | 34ab0a29f0c3a4da04bcfca5949a37abaf122d13 /sbin | |
parent | 4b0546f86ff2f49cb21eaa1c4f4190219bcb3752 (diff) |
push LDSTATIC line down so it's not overridden by makefile.inc. ok reyk
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/iked/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/iked/Makefile b/sbin/iked/Makefile index 77a79a9e371..d188b58b882 100644 --- a/sbin/iked/Makefile +++ b/sbin/iked/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2015/10/22 15:14:27 reyk Exp $ +# $OpenBSD: Makefile,v 1.15 2015/10/23 09:13:00 tedu Exp $ PROG= iked SRCS= ca.c chap_ms.c config.c control.c crypto.c dh.c \ @@ -10,9 +10,6 @@ SRCS+= parse.y MAN= iked.conf.5 iked.8 #NOMAN= yes -# Don't compile iked as static binary by default -LDSTATIC= - LDADD= -lutil -levent -lcrypto DPADD= ${LIBUTIL} ${LIBEVENT} ${LIBCRYPTO} CFLAGS+= -Wall -I${.CURDIR} @@ -34,3 +31,6 @@ eap_map.c: genmap.sh eap.h ${PROG} beforedepend: ${GENERATED} .include <bsd.prog.mk> + +# Don't compile iked as static binary by default +LDSTATIC= |