diff options
author | 2014-12-22 19:14:59 +0000 | |
---|---|---|
committer | 2014-12-22 19:14:59 +0000 | |
commit | aac6f89529c15a86376c44b637078781ac1c37f3 (patch) | |
tree | a06ddd963bd310096615ec046c247ef030f5d274 | |
parent | Link -static -pie executables with rcrt0.o instead of crt0.o such that they (diff) | |
download | wireguard-openbsd-aac6f89529c15a86376c44b637078781ac1c37f3.tar.xz wireguard-openbsd-aac6f89529c15a86376c44b637078781ac1c37f3.zip |
Static PIE has been delayed for quite a while. By pushing hard with pascal
towards a wimpy (but sufficient) model, kurt and kettenis got upset enough
to do it the right way, right away before we got out of hand. Bravo!
We no longer need /sbin/ld.so on the new roadmap.
-rw-r--r-- | libexec/ld.so/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libexec/ld.so/Makefile b/libexec/ld.so/Makefile index ad13e0dd754..4de73430eb6 100644 --- a/libexec/ld.so/Makefile +++ b/libexec/ld.so/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.53 2014/12/19 14:19:41 deraadt Exp $ +# $OpenBSD: Makefile,v 1.54 2014/12/22 19:14:59 deraadt Exp $ SUBDIR=ldconfig ldd MAN= ld.so.1 @@ -24,10 +24,6 @@ SRCS+= library_mquery.c SRCS+= library.c .endif -afterinstall: - ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${.OBJDIR}/ld.so ${DESTDIR}/sbin/ld.so - .include "${.CURDIR}/${MACHINE_CPU}/Makefile.inc" .PATH: ${.CURDIR}/${MACHINE_CPU} |