From owner-cvs-src@FreeBSD.ORG Thu Feb 19 06:19:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07EFF16A4CE; Thu, 19 Feb 2004 06:19:02 -0800 (PST) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id C96D343D1D; Thu, 19 Feb 2004 06:19:01 -0800 (PST) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id E42D25309; Thu, 19 Feb 2004 15:19:00 +0100 (CET) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id DF2875308; Thu, 19 Feb 2004 15:18:53 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id 6FE8C33C6F; Thu, 19 Feb 2004 15:18:53 +0100 (CET) To: Ruslan Ermilov References: <200402162018.i1GKIQK4029731@repoman.freebsd.org> <20040219134104.GB14981@ip.net.ua> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Thu, 19 Feb 2004 15:18:53 +0100 In-Reply-To: <20040219134104.GB14981@ip.net.ua> (Ruslan Ermilov's message of "Thu, 19 Feb 2004 15:41:04 +0200") Message-ID: User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on flood.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL autolearn=no version=2.63 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Garance A Drosehn Subject: Re: cvs commit: src Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Feb 2004 14:19:02 -0000 Ruslan Ermilov writes: > Also, why "rm -rf ${.OBJDIR}/*" instead of "rm -rf ${.OBJDIR}"? > Is it to preserve a possibly symlinked /usr/obj? Probably because if ${.OBJDIR} is a symlink, 'rm -rf ${.OBJDIR}' will just remove the symlink and not the actual files. A better way to address this is with 'rm -rf ${.OBJDIR}/', which will remove the contents of the directory the symlink points to before removing the symlink. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no