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

Tobias Kortkamp tobik at FreeBSD.org
Fri Oct 12 13:21:31 UTC 2018


Author: tobik
Date: Fri Oct 12 13:21:30 2018
New Revision: 481901
URL: https://svnweb.freebsd.org/changeset/ports/481901

Log:
  devel/py-libzfs: Fix build on systems that are missing the /sys symlink
  
  SRC_BASE is defined in bsd.port.mk and cannot be used in conditionals
  earlier.
  
  PR:		226858
  Reported by:	skh1002 at hotmail.com
  Approved by:	wg (maintainer timeout, 6 months)

Modified:
  head/devel/py-libzfs/Makefile

Modified: head/devel/py-libzfs/Makefile
==============================================================================
--- head/devel/py-libzfs/Makefile	Fri Oct 12 13:12:52 2018	(r481900)
+++ head/devel/py-libzfs/Makefile	Fri Oct 12 13:21:30 2018	(r481901)
@@ -28,6 +28,8 @@ USE_PYTHON=	autoplist distutils cython
 
 MAKE_ENV=	FREEBSD_SRC=${SRC_BASE}
 
+.include <bsd.port.options.mk>
+
 .if !exists(${SRC_BASE}/sys/Makefile)
 IGNORE=	requires kernel source files in ${SRC_BASE}
 .endif


More information about the svn-ports-all mailing list