diff options
author | 2014-12-25 23:15:26 +0000 | |
---|---|---|
committer | 2014-12-25 23:15:26 +0000 | |
commit | 2c0b128593da8ec1fafc3c4f627a1ffa14ce75e5 (patch) | |
tree | ee106e0b6abea3d28e2c6b7acc24449558d70133 | |
parent | Don't generate PLT entries for symbols defined in a regular object for (diff) | |
download | wireguard-openbsd-2c0b128593da8ec1fafc3c4f627a1ffa14ce75e5.tar.xz wireguard-openbsd-2c0b128593da8ec1fafc3c4f627a1ffa14ce75e5.zip |
We no longer need -Wl,-Bsymbolic for -static -pie.
-rw-r--r-- | share/mk/bsd.own.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 3e9573fd9c2..93053870ff7 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.153 2014/12/25 18:58:34 pascal Exp $ +# $OpenBSD: bsd.own.mk,v 1.154 2014/12/25 23:15:26 kettenis Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -41,7 +41,7 @@ BINUTILS_VERSION=binutils .endif .if !empty(STATICPIE_ARCH:M${_arch}) -STATICPIE?=-pie -Wl,-Bsymbolic +STATICPIE?=-pie .endif .if !empty(PIE_ARCH:M${_arch}) |