svn commit: r344211 - head/usr.sbin/wlandebug

Ed Maste emaste at FreeBSD.org
Sat Feb 16 12:49:56 UTC 2019


Author: emaste
Date: Sat Feb 16 12:49:55 2019
New Revision: 344211
URL: https://svnweb.freebsd.org/changeset/base/344211

Log:
  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

Modified:
  head/usr.sbin/wlandebug/Makefile

Modified: head/usr.sbin/wlandebug/Makefile
==============================================================================
--- head/usr.sbin/wlandebug/Makefile	Sat Feb 16 09:50:17 2019	(r344210)
+++ head/usr.sbin/wlandebug/Makefile	Sat Feb 16 12:49:55 2019	(r344211)
@@ -2,6 +2,7 @@
 
 PROG=	wlandebug
 MAN=	wlandebug.8
+MK_PIE:=	no
 
 LIBADD+=	ifconfig
 


More information about the svn-src-head mailing list