Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Oct 2018 13:21:31 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r481901 - head/devel/py-libzfs
Message-ID:  <201810121321.w9CDLVoC031513@repo.freebsd.org>

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



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