From owner-svn-ports-head@freebsd.org Fri Feb 16 02:54:15 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CD50F0BE9F; Fri, 16 Feb 2018 02:54:15 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C48AB7E2EA; Fri, 16 Feb 2018 02:54:14 +0000 (UTC) (envelope-from swills@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF6EA278AE; Fri, 16 Feb 2018 02:54:14 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1G2sEZh074245; Fri, 16 Feb 2018 02:54:14 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1G2sEgW074244; Fri, 16 Feb 2018 02:54:14 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201802160254.w1G2sEgW074244@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 16 Feb 2018 02:54:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461966 - head/sysutils/u-boot-tools X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/sysutils/u-boot-tools X-SVN-Commit-Revision: 461966 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Feb 2018 02:54:15 -0000 Author: swills Date: Fri Feb 16 02:54:14 2018 New Revision: 461966 URL: https://svnweb.freebsd.org/changeset/ports/461966 Log: sysutils/u-boot-tools: Use CC as HOSTCC for building tools Submitted by: jhibbits Reviewed by: bapt, manu Approved by: brd Differential Revision: https://reviews.freebsd.org/D14264 Modified: head/sysutils/u-boot-tools/Makefile (contents, props changed) Modified: head/sysutils/u-boot-tools/Makefile ============================================================================== --- head/sysutils/u-boot-tools/Makefile Fri Feb 16 02:36:25 2018 (r461965) +++ head/sysutils/u-boot-tools/Makefile Fri Feb 16 02:54:14 2018 (r461966) @@ -3,7 +3,7 @@ PORTNAME= u-boot-tools DISTVERSION= 2017.09 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.denx.de/pub/u-boot/ DISTNAME= u-boot-${PORTVERSION} @@ -19,13 +19,14 @@ CONFLICT= uboot-mkimage ALL_TARGET= tools-only MAKE_ARGS= ARCH=sandbox \ CC="${CC}" \ + HOSTCC="${CC}" \ KBUILD_VERBOSE=1 \ NOSTDINC_FLAGS="" \ PLIST_FILES= bin/mkimage bin/mkenvimage bin/dumpimage bin/fit_info do-configure: - (cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} sandbox_defconfig) + (cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} sandbox_defconfig) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/tools/dumpimage ${STAGEDIR}${PREFIX}/bin