svn commit: r412335 - head/misc/seabios

Roger Pau Monné royger at FreeBSD.org
Fri Apr 1 12:01:39 UTC 2016


Author: royger (src committer)
Date: Fri Apr  1 12:01:38 2016
New Revision: 412335
URL: https://svnweb.freebsd.org/changeset/ports/412335

Log:
  seabios: fix failure to find python
  
  The failure has been reported by the automatic builders:
  
  http://package19.nyi.freebsd.org/data/103i386-default-build-as-user/412304/logs/errors/seabios-1.9.1.log
  
  This is because SeaBIOS doesn't have a configure phase and the paths of the
  required build tools need to be passed to the make command when building.
  
  Approved by:		bapt
  Sponsored by:		Citrix Systems R&D
  Differential revision:	https://reviews.freebsd.org/D5804

Modified:
  head/misc/seabios/Makefile

Modified: head/misc/seabios/Makefile
==============================================================================
--- head/misc/seabios/Makefile	Fri Apr  1 11:17:54 2016	(r412334)
+++ head/misc/seabios/Makefile	Fri Apr  1 12:01:38 2016	(r412335)
@@ -12,7 +12,8 @@ LICENSE=	LGPL3
 
 USES=	gmake python:build
 
-MAKE_ARGS=	HOSTCC="${CC}" LD32BIT_FLAG="-melf_i386_fbsd"
+MAKE_ARGS=	HOSTCC="${CC}" LD32BIT_FLAG="-melf_i386_fbsd" \
+		PYTHON="${PYTHON_CMD}"
 USE_GCC=	yes
 
 EXTRA_PATCHES=	${FILESDIR}/0001-build-fix-.text-section-address-alignment.patch:-p1


More information about the svn-ports-all mailing list