From 8323b6417cb5a1e2e9164dac5134d9db19ca4357 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Sat, 16 Feb 2019 12:49:55 +0000 Subject: [PATCH] wlandebug: disable PIE to fix build failure libifconfig is built as a static-only PRIVATELIB (and there is no _pie.a version) so disable PIE in libifconfig's consumer. Sponsored by: The FreeBSD Foundation --- usr.sbin/wlandebug/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.sbin/wlandebug/Makefile b/usr.sbin/wlandebug/Makefile index 7ac993319947..8f3455f2ebac 100644 --- a/usr.sbin/wlandebug/Makefile +++ b/usr.sbin/wlandebug/Makefile @@ -2,6 +2,7 @@ PROG= wlandebug MAN= wlandebug.8 +MK_PIE:= no LIBADD+= ifconfig