git: 17e4a5c5106c - main - sysutils/u-boot-master: fix build with SOURCE_DATE_EPOCH set
Siva Mahadevan <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.ports |
|---|---|
| Message-ID | <6a6cc2f0.30ae2.7cbb9fa1__15195.6070958235$1785512696$gmane$org@gitrepo.freebsd.org> |
The branch main has been updated by siva: URL: https://cgit.FreeBSD.org/ports/commit/?id=17e4a5c5106cb36fcb9a84b19334cb1494be8595 commit 17e4a5c5106cb36fcb9a84b19334cb1494be8595 Author: cen <[email protected]> AuthorDate: 2026-07-31 15:25:30 +0000 Commit: Siva Mahadevan <[email protected]> CommitDate: 2026-07-31 15:44:30 +0000 sysutils/u-boot-master: fix build with SOURCE_DATE_EPOCH set PR: 291905 Reviewed by: siva Approved by: manu (maintainer timeout) Differential Revision: https://reviews.freebsd.org/D57077 --- sysutils/u-boot-master/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sysutils/u-boot-master/Makefile b/sysutils/u-boot-master/Makefile index 8430d5e3cbd9..19e72b041a7b 100644 --- a/sysutils/u-boot-master/Makefile +++ b/sysutils/u-boot-master/Makefile @@ -17,6 +17,7 @@ WWW?= https://www.denx.de/wiki/U-Boot LICENSE= GPLv2 BUILD_DEPENDS+= gsed:textproc/gsed \ + gdate:sysutils/coreutils \ swig:devel/swig \ dtc>=1.4.1:sysutils/dtc \ mkimage:sysutils/u-boot-tools \ @@ -29,7 +30,12 @@ LIB_DEPENDS+= libuuid.so:misc/libuuid USES= bison compiler:c11 gmake python:build pkgconfig shebangfix ssl \ tar:bz2 -BINARY_ALIAS= bison=${LOCALBASE}/bin/bison dtc=${LOCALBASE}/bin/dtc sed=gsed python3=${PYTHON_CMD} +BINARY_ALIAS= bison=${LOCALBASE}/bin/bison \ + date=${LOCALBASE}/bin/gdate \ + dtc=${LOCALBASE}/bin/dtc \ + python3=${PYTHON_CMD} \ + sed=${LOCALBASE}/bin/gsed \ + touch=${LOCALBASE}/bin/gtouch SHEBANG_FILES= tools/binman/binman SSP_UNSAFE= yes