diff options
author | 2015-06-05 18:14:26 +0000 | |
---|---|---|
committer | 2015-06-05 18:14:26 +0000 | |
commit | 7dea5c9624f562e70220c05866e0d0f779288970 (patch) | |
tree | 3f1a59e362fde7c0ad1eeb4fc34524d975f80e07 | |
parent | Change deref to the more sensible unref, and add a couple I missed before. (diff) | |
download | wireguard-openbsd-7dea5c9624f562e70220c05866e0d0f779288970.tar.xz wireguard-openbsd-7dea5c9624f562e70220c05866e0d0f779288970.zip |
Missing no-pie logic for bootblocks.
-rw-r--r-- | sys/arch/armish/stand/Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/armish/stand/Makefile.inc b/sys/arch/armish/stand/Makefile.inc index b50d9e385f1..e858ce97199 100644 --- a/sys/arch/armish/stand/Makefile.inc +++ b/sys/arch/armish/stand/Makefile.inc @@ -1,4 +1,7 @@ -# $OpenBSD: Makefile.inc,v 1.2 2008/06/09 15:01:54 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.3 2015/06/05 18:14:26 miod Exp $ BINDIR=/usr/mdec MANSUBDIR=armish + +CFLAGS+= -fno-pie +LDFLAGS+= -nopie |