svn commit: r513309 - head/net/py-pypcap

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Mon Sep 30 04:19:18 UTC 2019


Author: sunpoet
Date: Mon Sep 30 04:19:17 2019
New Revision: 513309
URL: https://svnweb.freebsd.org/changeset/ports/513309

Log:
  Workaround to avoid using /usr/lib32 over /usr/lib
  
  PR:		239725
  Reported by:	bofh
  Submitted by:	leres

Modified:
  head/net/py-pypcap/Makefile

Modified: head/net/py-pypcap/Makefile
==============================================================================
--- head/net/py-pypcap/Makefile	Mon Sep 30 04:19:12 2019	(r513308)
+++ head/net/py-pypcap/Makefile	Mon Sep 30 04:19:17 2019	(r513309)
@@ -15,6 +15,10 @@ LICENSE=	BSD3CLAUSE
 USES=		python
 USE_PYTHON=	autoplist cython distutils
 
+# Add workaround to avoid using /usr/lib32 over /usr/lib
+# See PR/239725 for details
+LDFLAGS+=	-L/usr/lib
+
 pre-configure:
 	cd ${WRKSRC} && cython-${PYTHON_VER} pcap.pyx
 


More information about the svn-ports-head mailing list