In message: <201005251512.o4pfclwl058...@svn.freebsd.org>
            Rafal Jaworowski <r...@freebsd.org> writes:
: +# Enable FDT by default for selected platforms.
: +.if defined(TARGET_ARCH) && \
: +     (${TARGET_ARCH} == "arm" || ${TARGET_ARCH} == "powerpc")
: +# XXX this is temporarily disabled until all FDT support code is in place.
: +#_fdt=       FDT
: +_no_fdt= FDT
: +.else
: +_no_fdt= FDT
: +.endif

The tests here should be:

.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "powerpc"

Never test against TARGET_* in our Makefile system (except that
binutils, gcc and gdb all use this for piecewise compile)...

Warner
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to