From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 08:06:56 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 610FD106564A for ; Sun, 20 Mar 2011 08:06:56 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id EABF28FC1E for ; Sun, 20 Mar 2011 08:06:55 +0000 (UTC) Received: by fxm11 with SMTP id 11so5562384fxm.13 for ; Sun, 20 Mar 2011 01:06:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=tDeVI4OuJLA+clFk4LnrwaePYA/Ly694HPwc8+HL4PU=; b=g2VMIque+xOQ3fRWR7DffD59hm0p4w97u/EnDVrIzmkm+In3K/Ov1AJosz+px51zDD IsTvrWxlV9m3s1Cf95EnZit0dntNddzgU3jNpaNGpLiaOXsG7mSyrnDbEnKBaTvHvEID l+fWQDh7BqW6zyAYwWUoofUiaC4GTmpzYFF9U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=n3veBtj90UM9OWQJVbp+glyxP/rH1U6x75nmfx1Qln+XcRQJWS8TPF/JW7f4woymY7 2EZcaCS1t9Uge72ACAJGXt6FsveOBtGLTsewrhiCnplhyKB7bF/XPLo6pLME39QFOfF3 /pjRMxlUqKhj2XIpV69jA7Kdx0fm0tbnzhcfM= Received: by 10.223.143.12 with SMTP id s12mr1932864fau.121.1300606561776; Sun, 20 Mar 2011 00:36:01 -0700 (PDT) Received: from Melon.malikania.fr (65.21.102-84.rev.gaoland.net [84.102.21.65]) by mx.google.com with ESMTPS id l4sm402578fan.14.2011.03.20.00.35.59 (version=SSLv3 cipher=OTHER); Sun, 20 Mar 2011 00:36:00 -0700 (PDT) Message-ID: <4D85AE1B.7010407@gmail.com> Date: Sun, 20 Mar 2011 08:34:51 +0100 From: David Demelier User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110306 Thunderbird/3.1.9 MIME-Version: 1.0 To: freebsd-current@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: WITHOUT_JAIL and make delete-old{,-libs} X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 08:06:56 -0000 Hello, I was surprised to see there is no ${MK_JAIL} conditional to remove old files on 8.2-RELEASE so I started to write it without watching if -CURRENT already make it in /usr/src/tools/build/mk/OptionalObsoleteFiles.inc. .if ${MK_JAIL} == no OLD_FILES+=usr/sbin/jail OLD_FILES+=usr/sbin/jexec OLD_FILES+=usr/sbin/jls OLD_FILES+=usr/share/man/man8/jail.8.gz OLD_FILES+=usr/share/man/man8/jexec.8.gz OLD_FILES+=usr/share/man/man8/jls.8.gz .endif I personnaly added more files : OLD_LIBS+=lib/libjail.so.1 OLD_LIBS+=usr/lib/libjail.a OLD_LIBS+=usr/lib/libjail_p.a OLD_FILES+=usr/lib/libjail.so OLD_FILES+=etc/rc.d/jail (/usr/lib/libjail.so is a symbolic link) I think they should be removed too, thus can you merge it to -STABLE if it's not already done? (sorry I'm not used to the cvs web interface and I don't have -STABLE right now) Cheers, -- David Demelier