From owner-svn-src-head@FreeBSD.ORG Sat Nov 29 08:45:20 2008 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF9251065676; Sat, 29 Nov 2008 08:45:20 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D58988FC12; Sat, 29 Nov 2008 08:45:20 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mAT8jKQR043708; Sat, 29 Nov 2008 08:45:20 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mAT8jKm8043707; Sat, 29 Nov 2008 08:45:20 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <200811290845.mAT8jKm8043707@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Sat, 29 Nov 2008 08:45:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r185428 - head/sys/modules/powermac_nvram X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 08:45:21 -0000 Author: bz Date: Sat Nov 29 08:45:20 2008 New Revision: 185428 URL: http://svn.freebsd.org/changeset/base/185428 Log: make 'make universe' not complain about In file included from /src/sys/modules/powermac_nvram/../../dev/powermac_nvram/powermac_nvram.c:38: @/dev/ofw/ofw_bus.h:36:24: error: ofw_bus_if.h: No such file or directory I am not sure for how long this had not worked and if it was just the latest vimage commit that had revealed this or if nobody had built universe successfully in a while. Btw, the tinderbox did not complain either so that is probably the reason noone had noticed. Modified: head/sys/modules/powermac_nvram/Makefile Modified: head/sys/modules/powermac_nvram/Makefile ============================================================================== --- head/sys/modules/powermac_nvram/Makefile Sat Nov 29 05:16:14 2008 (r185427) +++ head/sys/modules/powermac_nvram/Makefile Sat Nov 29 08:45:20 2008 (r185428) @@ -5,5 +5,6 @@ KMOD= powermac_nvram SRCS= powermac_nvram.c powermac_nvramvar.h SRCS+= bus_if.h device_if.h +SRCS+= ofw_bus_if.h .include