From 6d6da6898a18e2769c5a1710bfc8ebef78b85f78 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Fri, 10 Nov 2006 20:06:03 +0000 Subject: [PATCH] Clarify the error message when trying to build an ACPI module on amd64 or ia64. The old message implied to me that ACPI can't be compiled in on platforms other than amd64 and ia64. The amd64@ mailing list archive has messages from users with the same confusion. Approved by: scottl --- sys/modules/acpi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/acpi/Makefile b/sys/modules/acpi/Makefile index e3b4307a5c9..11c1dd714b8 100644 --- a/sys/modules/acpi/Makefile +++ b/sys/modules/acpi/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ .if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" -.error "ACPI can only be compiled into the kernel on the amd64 and ia64 platforms" +.error "ACPI must be compiled in (not built as a module) on amd64 and ia64" .endif .if ${MACHINE} != "i386"