Date: Fri, 16 Feb 2018 02:54:14 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461966 - head/sysutils/u-boot-tools Message-ID: <201802160254.w1G2sEgW074244@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802160254.w1G2sEgW074244>