From owner-svn-src-all@FreeBSD.ORG Fri Dec 19 06:51:02 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B9EB2D85; Fri, 19 Dec 2014 06:51:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A5A531368; Fri, 19 Dec 2014 06:51:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBJ6p2QQ063422; Fri, 19 Dec 2014 06:51:02 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBJ6p2eQ063421; Fri, 19 Dec 2014 06:51:02 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201412190651.sBJ6p2eQ063421@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Fri, 19 Dec 2014 06:51:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r275931 - head/sys/modules/cryptodev X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Fri, 19 Dec 2014 06:51:02 -0000 Author: lwhsu (ports committer) Date: Fri Dec 19 06:51:01 2014 New Revision: 275931 URL: https://svnweb.freebsd.org/changeset/base/275931 Log: Fix `make depend` in sys/modules Differential Revision: https://reviews.freebsd.org/D1338 Reviewed by: delphij Approved by: delphij Modified: head/sys/modules/cryptodev/Makefile Modified: head/sys/modules/cryptodev/Makefile ============================================================================== --- head/sys/modules/cryptodev/Makefile Fri Dec 19 06:48:47 2014 (r275930) +++ head/sys/modules/cryptodev/Makefile Fri Dec 19 06:51:01 2014 (r275931) @@ -3,6 +3,6 @@ .PATH: ${.CURDIR}/../../opencrypto KMOD = cryptodev SRCS = cryptodev.c -SRCS += bus_if.h device_if.h opt_compat.h +SRCS += bus_if.h device_if.h opt_compat.h opt_kdtrace.h .include