git: e41367e3ae12 - main - stand: avoid adding fdt SUBDIR_DEPEND if WITHOUT_FDT is set
Kyle Evans
kevans at FreeBSD.org
Thu Jan 7 22:28:22 UTC 2021
The branch main has been updated by kevans:
URL: https://cgit.FreeBSD.org/src/commit/?id=e41367e3ae1246c2b086f9f920a175108aa72380
commit e41367e3ae1246c2b086f9f920a175108aa72380
Author: Kyle Evans <kevans at FreeBSD.org>
AuthorDate: 2021-01-07 21:59:38 +0000
Commit: Kyle Evans <kevans at 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
More information about the dev-commits-src-main
mailing list