diff options
author | 2015-10-23 09:13:00 +0000 | |
---|---|---|
committer | 2015-10-23 09:13:00 +0000 | |
commit | c7ee60e6d210d517192c54071b262115c638d54d (patch) | |
tree | f7b1f2b70f76114409eeb5b5f5e6e8533b9b136a | |
parent | Fix uvm_object reference counting. While these reference counts aren't reaaly (diff) | |
download | wireguard-openbsd-c7ee60e6d210d517192c54071b262115c638d54d.tar.xz wireguard-openbsd-c7ee60e6d210d517192c54071b262115c638d54d.zip |
push LDSTATIC line down so it's not overridden by makefile.inc. ok reyk
-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= |