Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 Jan 2020 14:34:13 +0000 (UTC)
From:      Alan Somers <asomers@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r522895 - head/devel/py-libzfs
Message-ID:  <202001131434.00DEYD8R070141@repo.freebsd.org>

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



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