svn commit: r522895 - head/devel/py-libzfs

Alan Somers asomers at FreeBSD.org
Mon Jan 13 14:34:13 UTC 2020


Author: asomers (src committer)
Date: Mon Jan 13 14:34:12 2020
New Revision: 522895
URL: https://svnweb.freebsd.org/changeset/ports/522895

Log:
  devel/py-libzfs: fix build with nonstandard SRC_BASE after r520716
  
  Upstream git rev d801c5f59f20a1889a4e4c6366c9d12f2ee50b2f changed the name
  of the env variable used to indicate the location of the FreeBSD source
  tree.
  
  CC @sonicaj
  
  Approved by:	wg (maintainer)
  MFH:		2020Q1
  Sponsored by:	Axcient
  Differential Revision:	https://reviews.freebsd.org/D23126

Modified:
  head/devel/py-libzfs/Makefile

Modified: head/devel/py-libzfs/Makefile
==============================================================================
--- head/devel/py-libzfs/Makefile	Mon Jan 13 14:22:13 2020	(r522894)
+++ head/devel/py-libzfs/Makefile	Mon Jan 13 14:34:12 2020	(r522895)
@@ -27,8 +27,8 @@ HAS_CONFIGURE=	yes
 USES=		python
 USE_PYTHON=	autoplist distutils cython
 
-CONFIGURE_ENV=	FREEBSD_SRC=${SRC_BASE}
-MAKE_ENV=	FREEBSD_SRC=${SRC_BASE}
+CONFIGURE_ENV=	freebsd_src=${SRC_BASE}
+MAKE_ENV=	freebsd_src=${SRC_BASE}
 
 .include <bsd.port.options.mk>
 


More information about the svn-ports-all mailing list