mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 06:12:01 +01:00
b247ff70e8
Preemptively address a collision with LIBFDT (to be added in the future) from src.libnames.mk, which gets included via bsd.progs.mk. No functional change intended. Reviewed by: imp MFC after: 1 week Sponsored by: Innovate UK Differential Revision: https://reviews.freebsd.org/D42486
9 lines
178 B
Makefile
9 lines
178 B
Makefile
|
|
.if ${MK_FDT} == "yes"
|
|
CFLAGS+= -I${FDTSRC}
|
|
CFLAGS+= -I${BOOTOBJ}/fdt
|
|
CFLAGS+= -I${SYSDIR}/contrib/libfdt
|
|
CFLAGS+= -DLOADER_FDT_SUPPORT
|
|
LIBSAFDT= ${BOOTOBJ}/fdt/libfdt.a
|
|
.endif
|