From de5b074bf5517c98fe4d2a1617c781a6f8fbed6e Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Sun, 17 Mar 2013 06:33:49 +0000 Subject: [PATCH] In the uart module build ofw_bus_if.h on arm along with sparc64 as LINT fails when built locally without it. --- sys/modules/uart/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/modules/uart/Makefile b/sys/modules/uart/Makefile index d8a4869d00fa..06b005b9765a 100644 --- a/sys/modules/uart/Makefile +++ b/sys/modules/uart/Makefile @@ -4,6 +4,9 @@ .if ${MACHINE_CPUARCH} == "sparc64" uart_bus_ebus= uart_bus_ebus.c +.endif + +.if ${MACHINE_CPUARCH} == "arm" || ${MACHINE_CPUARCH} == "sparc64" ofw_bus_if= ofw_bus_if.h .endif