svn commit: r461966 - head/sysutils/u-boot-tools

Steve Wills swills at FreeBSD.org
Fri Feb 16 02:54:15 UTC 2018


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


More information about the svn-ports-head mailing list