From owner-svn-src-projects@FreeBSD.ORG Sat Oct 12 23:37:47 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C95A5F2; Sat, 12 Oct 2013 23:37:47 +0000 (UTC) (envelope-from sjg@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B699E2673; Sat, 12 Oct 2013 23:37:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9CNblE5040325; Sat, 12 Oct 2013 23:37:47 GMT (envelope-from sjg@svn.freebsd.org) Received: (from sjg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9CNbl13040322; Sat, 12 Oct 2013 23:37:47 GMT (envelope-from sjg@svn.freebsd.org) Message-Id: <201310122337.r9CNbl13040322@svn.freebsd.org> From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:37:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r256404 - projects/bmake/include X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Oct 2013 23:37:47 -0000 Author: sjg Date: Sat Oct 12 23:37:47 2013 New Revision: 256404 URL: http://svnweb.freebsd.org/changeset/base/256404 Log: In meta mode touch targets like copies so we don't needlessly repeat them. Modified: projects/bmake/include/Makefile Modified: projects/bmake/include/Makefile ============================================================================== --- projects/bmake/include/Makefile Sat Oct 12 23:33:36 2013 (r256403) +++ projects/bmake/include/Makefile Sat Oct 12 23:37:47 2013 (r256404) @@ -93,7 +93,7 @@ _libiconv_compat.h: ${.CURDIR}/Makefile echo "#undef __LIBICONV_COMPAT" >> _libiconv_compat.h .endif .endif - + # Define SHARED to indicate whether you want symbolic links to the system # source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is @@ -178,6 +178,9 @@ compat: -f ${.CURDIR}/../etc/mtree/BIND.include.dist \ -p ${DESTDIR}${INCLUDEDIR} > /dev/null .endif +.if ${MK_META_MODE} == "yes" + touch ${.TARGET} +.endif copies: .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \ @@ -257,6 +260,9 @@ copies: cd ${.CURDIR}/../sys/rpc; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \ ${DESTDIR}${INCLUDEDIR}/rpc +.if ${MK_META_MODE} == "yes" + touch ${.TARGET} +.endif symlinks: @${ECHO} "Setting up symlinks to kernel source tree..." @@ -369,3 +375,6 @@ symlinks: ln -fs ../../../sys/rpc/$$h \ ${DESTDIR}${INCLUDEDIR}/rpc; \ done +.if ${MK_META_MODE} == "yes" + touch ${.TARGET} +.endif