Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Feb 2019 12:49:56 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r344211 - head/usr.sbin/wlandebug
Message-ID:  <201902161249.x1GCnuuv054996@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902161249.x1GCnuuv054996>