summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>2004-05-26 19:16:30 +0000
committermickey <mickey@openbsd.org>2004-05-26 19:16:30 +0000
commitc1d802c2e7b39f2fd60e9de0df4bdb73dbbe994e (patch)
tree9f6698fd4edac9307653fc301b17c99deeaa171f
parentcall ctors after debugging has been setup; drahn@ ok (diff)
downloadwireguard-openbsd-c1d802c2e7b39f2fd60e9de0df4bdb73dbbe994e.tar.xz
wireguard-openbsd-c1d802c2e7b39f2fd60e9de0df4bdb73dbbe994e.zip
allow md makefile to supply LDADD; drahn@ ok
-rw-r--r--libexec/ld.so/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/Makefile b/libexec/ld.so/Makefile
index 89966ce86e7..d1356d9949e 100644
--- a/libexec/ld.so/Makefile
+++ b/libexec/ld.so/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.23 2003/11/20 23:23:09 avsm Exp $
+# $OpenBSD: Makefile,v 1.24 2004/05/26 19:16:30 mickey Exp $
SUBDIR=ldconfig ldd
VPATH=${.CURDIR}/../../lib/libc/string
@@ -25,6 +25,6 @@ INSTALL_STRIP=
ELF_LDFLAGS+=--shared -Bsymbolic
$(PROG):
- $(LD) -x -e _dl_start $(ELF_LDFLAGS) -o $(PROG) $(OBJS)
+ $(LD) -x -e _dl_start $(ELF_LDFLAGS) -o $(PROG) $(OBJS) $(LDADD)
.include <bsd.prog.mk>