diff options
author | 2020-07-20 08:14:53 +0000 | |
---|---|---|
committer | 2020-07-20 08:14:53 +0000 | |
commit | 6aad5408578943a3f152d7d37a207198b50367bb (patch) | |
tree | 8ec3b7fd8c63ea814a879459df0a29617aa41fd5 | |
parent | Fix a logic bug in iwn(4) which meant that automatic rate control for (diff) | |
download | wireguard-openbsd-6aad5408578943a3f152d7d37a207198b50367bb.tar.xz wireguard-openbsd-6aad5408578943a3f152d7d37a207198b50367bb.zip |
Add powerpc64 to PIE_ARCH and STATICPIE_ARCH.
ok drahn@
-rw-r--r-- | share/mk/bsd.own.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 7a32ed57011..f4ef0ce7b50 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.203 2020/07/04 19:25:11 gkoehler Exp $ +# $OpenBSD: bsd.own.mk,v 1.204 2020/07/20 08:14:53 kettenis Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -25,8 +25,8 @@ GCC4_ARCH+=mips64 .endif # m88k: ? -PIE_ARCH=aarch64 alpha amd64 arm hppa i386 mips64 mips64el powerpc sh sparc64 -STATICPIE_ARCH=aarch64 alpha amd64 arm hppa i386 mips64 mips64el powerpc sh sparc64 +PIE_ARCH=aarch64 alpha amd64 arm hppa i386 mips64 mips64el powerpc powerpc64 sh sparc64 +STATICPIE_ARCH=aarch64 alpha amd64 arm hppa i386 mips64 mips64el powerpc powerpc64 sh sparc64 .for _arch in ${MACHINE_ARCH} .if !empty(GCC3_ARCH:M${_arch}) |