diff options
author | philip <philip@FreeBSD.org> | 2004-04-23 17:41:05 +0000 |
---|---|---|
committer | philip <philip@FreeBSD.org> | 2004-04-23 17:41:05 +0000 |
commit | ea8607cc654d539160ae9028be70619b55ca9507 (patch) | |
tree | 02ab42d2103a148c2b7a9f77132b249228f93443 /sys/modules | |
parent | fd3f8b3142cd4f1ab39c008864b8f886537b7388 (diff) | |
download | FreeBSD-src-ea8607cc654d539160ae9028be70619b55ca9507.zip FreeBSD-src-ea8607cc654d539160ae9028be70619b55ca9507.tar.gz |
Enable the led-toggling magic. Compiling files which are in the kernel into
modules is a very nice way to produce hard-to-find panics. Who would look for
a bug in a Makefile anyway?
Has anyone seen the pointy hat? :-o
Approved by: njl (mentor)
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/acpi/acpi_asus/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/modules/acpi/acpi_asus/Makefile b/sys/modules/acpi/acpi_asus/Makefile index 0609e31..3d8d3b8 100644 --- a/sys/modules/acpi/acpi_asus/Makefile +++ b/sys/modules/acpi/acpi_asus/Makefile @@ -1,10 +1,9 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../../i386/acpica \ - ${.CURDIR}/../../../dev/led +.PATH: ${.CURDIR}/../../../i386/acpica KMOD= acpi_asus CFLAGS+= -I${.CURDIR}/../../../contrib/dev/acpica -SRCS= acpi_asus.c led.c opt_acpi.h device_if.h bus_if.h +SRCS= acpi_asus.c opt_acpi.h device_if.h bus_if.h .include <bsd.kmod.mk> |