From owner-svn-src-head@FreeBSD.ORG Sat Jun 20 09:48:55 2015 Return-Path: Delivered-To: svn-src-head@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BC54AC1; Sat, 20 Jun 2015 09:48:55 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-qg0-x231.google.com (mail-qg0-x231.google.com [IPv6:2607:f8b0:400d:c04::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 07ACE1FD; Sat, 20 Jun 2015 09:48:55 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by qgal13 with SMTP id l13so42794665qga.3; Sat, 20 Jun 2015 02:48:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=tNvTqD1sqruwHF9P0w9V7MuNVtznKymrPKfzXYOd8XA=; b=of6RLqVzMfOCL4lvJ1covfN6DDo8ixyxwWQdvTsdv6ifzTMbzBNbNu+bFftOAP7z7j 1/ATKjrfVXTxUIRlGulYSL1EZqZNZVOcgyXHNUl55CQY2fHDUDyk+qSX8z+Tllt/L6jH AJBePjfnFmOkegV5FMSYbCO8VdTYxhxqKpEVs8x0B1fsGGnL3eXmiPWERqxqddDei0pd FwVLSpfMS44fY5YucOSlplQdpH5J6QEA9by0WbOrJIBRQEmK3wki4GgGaO2Z40Ey73yS tf7Ksx8cEBoTwUSlfZJQoX3rcX3IteRJyjG9aEH+0YMokiaVMPiuNa5wlZN/1QrStSv+ ceLA== MIME-Version: 1.0 X-Received: by 10.55.52.12 with SMTP id b12mr42945022qka.22.1434793733943; Sat, 20 Jun 2015 02:48:53 -0700 (PDT) Received: by 10.140.98.73 with HTTP; Sat, 20 Jun 2015 02:48:53 -0700 (PDT) In-Reply-To: References: <201506200906.t5K96mY8014539@svn.freebsd.org> Date: Sat, 20 Jun 2015 02:48:53 -0700 Message-ID: Subject: Re: svn commit: r284637 - head From: NGie Cooper To: Antoine Brodin Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 09:48:55 -0000 On Sat, Jun 20, 2015 at 2:41 AM, Antoine Brodin wrote: > On Sat, Jun 20, 2015 at 9:11 AM, NGie Cooper wrote: >> On Sat, Jun 20, 2015 at 2:06 AM, Antoine Brodin wrote: >>> Author: antoine >>> Date: Sat Jun 20 09:06:48 2015 >>> New Revision: 284637 >>> URL: https://svnweb.freebsd.org/changeset/base/284637 >>> >>> Log: >>> Add more obsolete files >> >> ... >> >>> +# 20141030: atf 0.21 import >>> +OLD_FILES+=usr/share/man/man3/atf-c++-api.3.gz >> >> Is this correct? > > This file is not installed from base/head. It may still be installed > by the port but it's unrelated. It's still being installed in base -- just as a hardlink: 72 MAN= atf-c++.3 73 MLINKS+= atf-c++.3 atf-c-api++.3 # Backwards compatibility. $ make -n maninstall install -o root -g wheel -m 444 atf-c++.3.gz /usr/share/man/man3 set atf-c++.3 3 atf-c-api++.3 3; while : ; do case $# in 0) break;; [123]) echo "warn: empty MLINK: $1 $2 $3"; break;; esac; name=$1; shift; sect=$1; shift; l=/usr/share/man/man${sect}/$name; name=$1; shift; sect=$1; shift; t=/usr/share/man/man${sect}/$name; echo ${t}.gz -\> ${l}.gz; rm -f ${t} ${t}.gz; install -l h ${l}.gz ${t}.gz; done ===> tests (maninstall) ===> tests/detail (maninstall) Is your script/method of finding obsolete files correct? Thanks, -NGie