From owner-freebsd-stable@FreeBSD.ORG Fri Oct 3 22:24:58 2008 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9954F1065696 for ; Fri, 3 Oct 2008 22:24:58 +0000 (UTC) (envelope-from dan@langille.org) Received: from nyi.unixathome.org (nyi.unixathome.org [64.147.113.42]) by mx1.freebsd.org (Postfix) with ESMTP id 6F8D68FC15 for ; Fri, 3 Oct 2008 22:24:58 +0000 (UTC) (envelope-from dan@langille.org) Received: from localhost (localhost [127.0.0.1]) by nyi.unixathome.org (Postfix) with ESMTP id A2AF150848 for ; Fri, 3 Oct 2008 23:24:54 +0100 (BST) X-Virus-Scanned: amavisd-new at unixathome.org Received: from nyi.unixathome.org ([127.0.0.1]) by localhost (nyi.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q8mcTtvkQ0zd for ; Fri, 3 Oct 2008 23:24:53 +0100 (BST) Received: from laptop.unixathome.org (bast.unixathome.org [72.78.246.37]) by nyi.unixathome.org (Postfix) with ESMTPSA id C25815083F for ; Fri, 3 Oct 2008 23:24:53 +0100 (BST) Message-ID: <48E69B70.3090804@langille.org> Date: Fri, 03 Oct 2008 18:23:44 -0400 From: Dan Langille Organization: The FreeBSD Diary User-Agent: Thunderbird 2.0.0.14 (X11/20080623) MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: make delete-old vs make-delete-libs X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2008 22:24:58 -0000 I'm wondering if these commands from /usr/src/Makefile are correctly described: # check-old - List obsolete directories/files/libraries. # check-old-dirs - List obsolete directories. # check-old-files - List obsolete files. # check-old-libs - List obsolete libraries. # delete-old - Delete obsolete directories/files/libraries. # delete-old-dirs - Delete obsolete directories. # delete-old-files - Delete obsolete files. # delete-old-libs - Delete obsolete libraries. From the above, it appears as if 'make delete-old' is the same as doing: make delete-old-dirs make delete-old-files make delete-old-libs Running the command indicates otherwise. In fact, make delete-old outputs: >>> Removing old files (only deletes safe to delete libs) and: >>> Old directories removed To remove old libraries run 'make delete-old-libs'. That indicates, to me, that only old files were deleted. No old libraries were touched. What's up here? Which is right? thanks.