From owner-svn-src-all@FreeBSD.ORG Thu Jun 23 20:31:53 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (unknown [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 313341065670; Thu, 23 Jun 2011 20:31:53 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [69.147.83.44]) by mx1.freebsd.org (Postfix) with ESMTP id 1FC6F8FC14; Thu, 23 Jun 2011 20:31:53 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p5NKVrSp015460; Thu, 23 Jun 2011 20:31:53 GMT (envelope-from uqs@svn.freebsd.org) Received: (from uqs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p5NKVqCd015456; Thu, 23 Jun 2011 20:31:52 GMT (envelope-from uqs@svn.freebsd.org) Message-Id: <201106232031.p5NKVqCd015456@svn.freebsd.org> From: Ulrich Spoerlein Date: Thu, 23 Jun 2011 20:31:52 +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: r223483 - in head/sys/modules: cxgbe/if_cxgbe nfscl nfscommon X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jun 2011 20:31:53 -0000 Author: uqs Date: Thu Jun 23 20:31:52 2011 New Revision: 223483 URL: http://svn.freebsd.org/changeset/base/223483 Log: Fix make buildworld -DMODULES_WITH_WORLD Sort opt_ srcs Modified: head/sys/modules/cxgbe/if_cxgbe/Makefile head/sys/modules/nfscl/Makefile head/sys/modules/nfscommon/Makefile Modified: head/sys/modules/cxgbe/if_cxgbe/Makefile ============================================================================== --- head/sys/modules/cxgbe/if_cxgbe/Makefile Thu Jun 23 17:42:27 2011 (r223482) +++ head/sys/modules/cxgbe/if_cxgbe/Makefile Thu Jun 23 20:31:52 2011 (r223483) @@ -10,6 +10,7 @@ SRCS = t4_main.c t4_sge.c t4_l2t.c SRCS+= t4_hw.c SRCS+= device_if.h bus_if.h pci_if.h SRCS+= opt_inet.h +SRCS+= opt_ofed.h CFLAGS+= -I${CXGBE} Modified: head/sys/modules/nfscl/Makefile ============================================================================== --- head/sys/modules/nfscl/Makefile Thu Jun 23 17:42:27 2011 (r223482) +++ head/sys/modules/nfscl/Makefile Thu Jun 23 20:31:52 2011 (r223483) @@ -14,13 +14,14 @@ SRCS= vnode_if.h \ nfs_clsubs.c \ nfs_clvfsops.c \ nfs_clvnops.c \ + opt_bootp.h \ opt_inet.h \ opt_inet6.h \ - opt_bootp.h \ - opt_nfsroot.h \ + opt_kdtrace.h \ + opt_kgssapi.h \ opt_nfs.h \ - opt_ufs.h \ - opt_kgssapi.h + opt_nfsroot.h \ + opt_ufs.h .if !defined(KERNBUILDDIR) NFS_INET?= 1 # 0/1 - requires INET to be configured in kernel Modified: head/sys/modules/nfscommon/Makefile ============================================================================== --- head/sys/modules/nfscommon/Makefile Thu Jun 23 17:42:27 2011 (r223482) +++ head/sys/modules/nfscommon/Makefile Thu Jun 23 20:31:52 2011 (r223483) @@ -7,9 +7,10 @@ SRCS= vnode_if.h \ nfs_commonkrpc.c \ nfs_commonport.c \ nfs_commonsubs.c \ - opt_kgssapi.h \ - opt_ufs.h \ opt_inet6.h \ - opt_nfs.h + opt_kdtrace.h \ + opt_kgssapi.h \ + opt_nfs.h \ + opt_ufs.h .include