Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 02 Sep 2001 17:04:56 +0900
From:      Mitsuru IWASAKI <iwasaki@jp.FreeBSD.org>
To:        dwcjr@inethouston.net
Cc:        current@freebsd.org
Subject:   Re: newer buildkernel failure
Message-ID:  <20010902170456J.iwasaki@jp.FreeBSD.org>
In-Reply-To: <20010902020831.A11987@leviathan.inethouston.net>
References:  <20010902020831.A11987@leviathan.inethouston.net>

next in thread | previous in thread | raw e-mail | index | archive | help
Hi,

> The patch committed just 20 mins ago to fix the breakage causes this 
> now, unless I caught it in the middle of a commit.
>  
> 
> perl @/kern/makeobjops.pl -h @/dev/pci/pcib_if.m
> perl @/kern/makeobjops.pl -h @/isa/isa_if.m
> make -f /usr/src/sys/modules/acpi/../../i386/acpica/Makefile  
> MAKESRCPATH=/usr/src/sys/modules/acpi/../../i386/acpica
> cc -nostdinc -O -pipe -march=k6 -march=k6   
     ^^^^^^^^^
Because of -nostdinc option, I think.  Does following patch
solve the problem?


Index: Makefile
===================================================================
RCS file: /home/ncvs/src/sys/i386/acpica/Makefile,v
retrieving revision 1.1
diff -u -r1.1 Makefile
--- Makefile	20 Jul 2001 06:07:31 -0000	1.1
+++ Makefile	2 Sep 2001 07:55:41 -0000
@@ -9,6 +9,7 @@
 MAKESRCPATH= ${.CURDIR}
 CLEANFILES= acpi_wakecode.h acpi_wakecode.bin acpi_wakecode.o
 .endif
+CFLAGS+=	-I.
 
 all: acpi_wakecode.h
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010902170456J.iwasaki>