diff options
author | 2019-12-02 17:19:25 +0000 | |
---|---|---|
committer | 2019-12-02 17:19:25 +0000 | |
commit | 93a664f21378b90da9c7200b1020553be1df08d4 (patch) | |
tree | 4b8174db5243b9055fda3139da53ae55d5f7502f | |
parent | Save the computed median to avoid having it to compute it all the time; (diff) | |
download | wireguard-openbsd-93a664f21378b90da9c7200b1020553be1df08d4.tar.xz wireguard-openbsd-93a664f21378b90da9c7200b1020553be1df08d4.zip |
It is not always clear what ld.so was backed up to ld.so.backup, and
better that folk doing development in here use their own cp tooling.
-rw-r--r-- | libexec/ld.so/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libexec/ld.so/Makefile b/libexec/ld.so/Makefile index 68207da87d6..76fb8acaa89 100644 --- a/libexec/ld.so/Makefile +++ b/libexec/ld.so/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.79 2019/11/29 19:30:56 deraadt Exp $ +# $OpenBSD: Makefile,v 1.80 2019/12/02 17:19:25 deraadt Exp $ SUBDIR=ldconfig ldd MAN= ld.so.1 @@ -91,7 +91,6 @@ $(PROG): $(test_prog) ${VERSION_SCRIPT} $(OBJS) ${LD_SCRIPT} $(LD) -e _dl_start $(ELF_LDFLAGS) -o $(candidate) \ `echo ${OBJS} | tr " " "\n" | sort -R` .endif - cp /usr/libexec/ld.so ld.so.backup .ifdef CHECK_LDSO ${CHECK_LDSO} $(candidate) .endif |