mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 06:15:33 -04:00
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
(cherry picked from commit b247ff70e8)
8 lines
178 B
Makefile
8 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
|