Date: Sun, 23 May 2010 20:08:41 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r208462 - head/sys/modules/uart Message-ID: <201005232008.o4NK8fFD077340@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marius Date: Sun May 23 20:08:41 2010 New Revision: 208462 URL: http://svn.freebsd.org/changeset/base/208462 Log: Correct the path to the MD source so r206569 actually works as intended. Modified: head/sys/modules/uart/Makefile Modified: head/sys/modules/uart/Makefile ============================================================================== --- head/sys/modules/uart/Makefile Sun May 23 20:00:12 2010 (r208461) +++ head/sys/modules/uart/Makefile Sun May 23 20:08:41 2010 (r208462) @@ -16,7 +16,7 @@ SRCS= uart_bus_acpi.c ${uart_bus_ebus} u uart_if.c uart_if.h uart_subr.c uart_tty.c .if ${MACHINE} == "sun4v" SRCS+= uart_cpu_sparc64.c -.elif exists(${CURDIR}/uart_cpu_${MACHINE}.c) +.elif exists(${.CURDIR}/../../dev/uart/uart_cpu_${MACHINE}.c) SRCS+= uart_cpu_${MACHINE}.c .endif SRCS+= bus_if.h card_if.h device_if.h isa_if.h ${ofw_bus_if} pci_if.h \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005232008.o4NK8fFD077340>