Date: Thu, 7 Jan 2021 22:28:21 GMT From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: e41367e3ae12 - main - stand: avoid adding fdt SUBDIR_DEPEND if WITHOUT_FDT is set Message-ID: <202101072228.107MSLCM089301@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by kevans: URL: https://cgit.FreeBSD.org/src/commit/?id=e41367e3ae1246c2b086f9f920a175108aa72380 commit e41367e3ae1246c2b086f9f920a175108aa72380 Author: Kyle Evans <kevans@FreeBSD.org> AuthorDate: 2021-01-07 21:59:38 +0000 Commit: Kyle Evans <kevans@FreeBSD.org> CommitDate: 2021-01-07 22:28:20 +0000 stand: avoid adding fdt SUBDIR_DEPEND if WITHOUT_FDT is set This unbreaks the efi build if WITHOUT_FDT is set. Reported by: peterj --- stand/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stand/Makefile b/stand/Makefile index 7b871d9164db..f08386424009 100644 --- a/stand/Makefile +++ b/stand/Makefile @@ -78,7 +78,9 @@ SUBDIR_DEPEND_libsa32+= libsa SUBDIR_DEPEND_forth+= ficl SUBDIR_DEPEND_lua+= liblua +.if ${MK_FDT} != "no" SUBDIR_DEPEND_efi+= fdt +.endif SUBDIR_PARALLEL= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101072228.107MSLCM089301>