svn commit: r566315 - head/net/packetdrill

Kevin Bowling kbowling at FreeBSD.org
Mon Feb 22 17:12:37 UTC 2021


Author: kbowling
Date: Mon Feb 22 17:12:36 2021
New Revision: 566315
URL: https://svnweb.freebsd.org/changeset/ports/566315

Log:
  net/packetdrill: Fix build with PIE
  
  PR:		253275
  Submitted by:	Dawid Gorecki <dgr at semihalf.com>
  Approved by:	kbowling (maintainer)
  Differential Revision:	https://reviews.freebsd.org/D28865

Modified:
  head/net/packetdrill/Makefile

Modified: head/net/packetdrill/Makefile
==============================================================================
--- head/net/packetdrill/Makefile	Mon Feb 22 17:10:55 2021	(r566314)
+++ head/net/packetdrill/Makefile	Mon Feb 22 17:12:36 2021	(r566315)
@@ -23,6 +23,9 @@ PORTEXAMPLES=	tests
 
 OPTIONS_DEFINE=	DOCS EXAMPLES
 
+# XXX Static libraries with PIE are currently unsupported.
+MAKE_ARGS+=	WITHOUT_PIE=true
+
 pre-build:
 	${INSTALL_DATA} ${FILESDIR}/Makefile ${FILESDIR}/Makefile.inc ${WRKSRC}
 .for F in libpd packetdrill


More information about the svn-ports-all mailing list