Date: Fri, 12 May 2006 11:49:19 -0700 From: David Wolfskill <david@catwhisker.org> To: FreeBSD Tinderbox <tinderbox@freebsd.org> Cc: current@freebsd.org, jhb@freebsd.org, i386@freebsd.org Subject: Re: [head tinderbox] failure on i386/i386 Message-ID: <20060512184919.GD20934@bunrab.catwhisker.org> In-Reply-To: <20060512174222.E26077302F@freebsd-current.sentex.ca> References: <20060512174222.E26077302F@freebsd-current.sentex.ca>
next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, May 12, 2006 at 01:42:22PM -0400, FreeBSD Tinderbox wrote: > [...] > ===> sound/driver/ess (depend) > @ -> /src/sys > machine -> /src/sys/i386/include > awk -f @/tools/makeobjops.awk @/kern/device_if.m -h > awk -f @/tools/makeobjops.awk @/kern/bus_if.m -h > awk -f @/tools/makeobjops.awk @/isa/isa_if.m -h > awk -f @/tools/makeobjops.awk @/dev/pci/pci_if.m -h > make: don't know how to make es1888.c. Stop > *** Error code 2 > > Stop in /src/sys/modules/sound/driver. > *** Error code 1 > > Stop in /src/sys/modules/sound. > *** Error code 1 > > Stop in /src/sys/modules. > *** Error code 1 > > Stop in /obj/src/sys/LINT. > *** Error code 1 > > Stop in /src. > *** Error code 1 Following patch fixes it for me: Index: Makefile =================================================================== RCS file: /cvs/freebsd/src/sys/modules/sound/driver/ess/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 23 Jan 2002 03:32:36 -0000 1.3 +++ Makefile 12 May 2006 18:09:29 -0000 @@ -4,6 +4,6 @@ KMOD= snd_ess SRCS= device_if.h bus_if.h isa_if.h pci_if.h -SRCS+= ess.c es1888.c +SRCS+= ess.c .include <bsd.kmod.mk> Peace, david -- David H. Wolfskill david@catwhisker.org Spam received via "opt-out" lists is still spam, and should be treated as such. See http://www.catwhisker.org/~david/publickey.gpg for my public key.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20060512184919.GD20934>