From owner-svn-src-all@freebsd.org Thu Oct 8 17:49:16 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 08C019D091D; Thu, 8 Oct 2015 17:49:16 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 D40F8E65; Thu, 8 Oct 2015 17:49:15 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98HnEC0040717; Thu, 8 Oct 2015 17:49:14 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98HnEVN040711; Thu, 8 Oct 2015 17:49:14 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201510081749.t98HnEVN040711@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 8 Oct 2015 17:49:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r289042 - in stable/10/kerberos5: libexec/kdigest usr.bin/hxtool usr.bin/kadmin usr.bin/kcc usr.sbin/iprop-log usr.sbin/ktutil X-SVN-Group: stable-10 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.20 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, 08 Oct 2015 17:49:16 -0000 Author: bdrewery Date: Thu Oct 8 17:49:14 2015 New Revision: 289042 URL: https://svnweb.freebsd.org/changeset/base/289042 Log: MFC r288198,r288200: r288198: Remove unneeded dependency line. r288200: Remove unneeded dependency of '.o: .h' that bsd.prog.mk already handles. Modified: stable/10/kerberos5/libexec/kdigest/Makefile stable/10/kerberos5/usr.bin/hxtool/Makefile stable/10/kerberos5/usr.bin/kadmin/Makefile stable/10/kerberos5/usr.bin/kcc/Makefile stable/10/kerberos5/usr.sbin/iprop-log/Makefile stable/10/kerberos5/usr.sbin/ktutil/Makefile Directory Properties: stable/10/ (props changed) Modified: stable/10/kerberos5/libexec/kdigest/Makefile ============================================================================== --- stable/10/kerberos5/libexec/kdigest/Makefile Thu Oct 8 17:48:49 2015 (r289041) +++ stable/10/kerberos5/libexec/kdigest/Makefile Thu Oct 8 17:49:14 2015 (r289042) @@ -18,9 +18,7 @@ CLEANFILES= kdigest-commands.h kdigest-c kdigest-commands.h: kdigest-commands.in ${SLC} ${.ALLSRC:M*.in} -.for ext in c o -kdigest-commands.${ext}: kdigest-commands.h -.endfor +kdigest-commands.c: kdigest-commands.h .include Modified: stable/10/kerberos5/usr.bin/hxtool/Makefile ============================================================================== --- stable/10/kerberos5/usr.bin/hxtool/Makefile Thu Oct 8 17:48:49 2015 (r289041) +++ stable/10/kerberos5/usr.bin/hxtool/Makefile Thu Oct 8 17:49:14 2015 (r289042) @@ -15,9 +15,7 @@ CLEANFILES= hxtool-commands.h hxtool-com hxtool-commands.h: hxtool-commands.in ${SLC} ${.ALLSRC:M*.in} -.for ext in c o -hxtool-commands.${ext}: hxtool-commands.h -.endfor +hxtool-commands.c: hxtool-commands.h .include Modified: stable/10/kerberos5/usr.bin/kadmin/Makefile ============================================================================== --- stable/10/kerberos5/usr.bin/kadmin/Makefile Thu Oct 8 17:48:49 2015 (r289041) +++ stable/10/kerberos5/usr.bin/kadmin/Makefile Thu Oct 8 17:49:14 2015 (r289042) @@ -43,9 +43,7 @@ CLEANFILES= kadmin-commands.h kadmin-com kadmin-commands.h: ${KRB5DIR}/kadmin/kadmin-commands.in ${SLC} ${.ALLSRC:M*.in} -.for ext in o c -kadmin-commands.${ext}: kadmin-commands.h -.endfor +kadmin-commands.c: kadmin-commands.h .PATH: ${KRB5DIR}/kadmin Modified: stable/10/kerberos5/usr.bin/kcc/Makefile ============================================================================== --- stable/10/kerberos5/usr.bin/kcc/Makefile Thu Oct 8 17:48:49 2015 (r289041) +++ stable/10/kerberos5/usr.bin/kcc/Makefile Thu Oct 8 17:49:14 2015 (r289042) @@ -24,9 +24,7 @@ CLEANFILES= kcc-commands.h kcc-commands. kcc-commands.h: kcc-commands.in ${SLC} ${.ALLSRC:M*.in} -.for ext in c o -kcc-commands.${ext}: kcc-commands.h -.endfor +kcc-commands.c: kcc-commands.h .include Modified: stable/10/kerberos5/usr.sbin/iprop-log/Makefile ============================================================================== --- stable/10/kerberos5/usr.sbin/iprop-log/Makefile Thu Oct 8 17:48:49 2015 (r289041) +++ stable/10/kerberos5/usr.sbin/iprop-log/Makefile Thu Oct 8 17:49:14 2015 (r289042) @@ -19,9 +19,7 @@ CLEANFILES= iprop-commands.h iprop-comma iprop-commands.h: iprop-commands.in ${SLC} ${.ALLSRC:M*.in} -.for ext in c o -iprop-commands.${ext}: iprop-commands.h -.endfor +iprop-commands.c: iprop-commands.h .include Modified: stable/10/kerberos5/usr.sbin/ktutil/Makefile ============================================================================== --- stable/10/kerberos5/usr.sbin/ktutil/Makefile Thu Oct 8 17:48:49 2015 (r289041) +++ stable/10/kerberos5/usr.sbin/ktutil/Makefile Thu Oct 8 17:49:14 2015 (r289042) @@ -29,8 +29,6 @@ CLEANFILES= ktutil-commands.h ktutil-com ktutil-commands.h: ${KRB5DIR}/admin/ktutil-commands.in ${SLC} ${.ALLSRC:M*.in} -.for ext in c o -ktutil-commands.${ext}: ktutil-commands.h -.endfor +ktutil-commands.c: ktutil-commands.h .PATH: ${KRB5DIR}/admin