From owner-svn-ports-all@freebsd.org Fri Apr 1 12:01:39 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B04D0AEB947; Fri, 1 Apr 2016 12:01:39 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7D932101D; Fri, 1 Apr 2016 12:01:39 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u31C1cfq016901; Fri, 1 Apr 2016 12:01:38 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u31C1c7X016900; Fri, 1 Apr 2016 12:01:38 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201604011201.u31C1c7X016900@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Fri, 1 Apr 2016 12:01:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412335 - head/misc/seabios X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Apr 2016 12:01:39 -0000 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