From owner-svn-src-all@FreeBSD.ORG Sat Feb 27 10:37:15 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD63A106566C; Sat, 27 Feb 2010 10:37:14 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-ew0-f226.google.com (mail-ew0-f226.google.com [209.85.219.226]) by mx1.freebsd.org (Postfix) with ESMTP id B73CF8FC16; Sat, 27 Feb 2010 10:37:10 +0000 (UTC) Received: by ewy26 with SMTP id 26so490895ewy.3 for ; Sat, 27 Feb 2010 02:37:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:date:from:to:cc :subject:message-id:in-reply-to:references:x-mailer:mime-version :content-type; bh=rsng2wmvLsRHAQlG3au94U9500bwTcgpNAMwoPlSafU=; b=K1jaDPygsYr9eJISI53kE/3KiuRsIII7KpNS1sUeJNuz/aw6/4GGwc7zfm3umcqjdi 8e6pGrpZshLvym7Khp7MC4/uCB5km7vwSC6up5gxsLQXb5qHGmxzvnIN5kB9DAEhrgA9 wDRI4UhmsfwtD5WcHk2G26RJ1ck1IGUjL0ZaA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:in-reply-to:references :x-mailer:mime-version:content-type; b=D/Zp0CB1fP/Wgd7zEQBUthT3zN9p/OXxgDpt9mWmjrw13lJbfDqWz08s1ccXYCuC39 rnorx59RLyn235CqANEvIJ8j1O4sG8e6KaFda6sKZ/uLLvVHK5zwNATGd7GaeUmxE74j 7JmNN889IR68qXYMtwg01GomFf9U1gsDxDOYA= Received: by 10.213.109.91 with SMTP id i27mr1115278ebp.3.1267267020455; Sat, 27 Feb 2010 02:37:00 -0800 (PST) Received: from peanut.dreadbsd.org (mna75-2-82-67-196-50.fbx.proxad.net [82.67.196.50]) by mx.google.com with ESMTPS id 5sm921150eyh.9.2010.02.27.02.36.59 (version=SSLv3 cipher=RC4-MD5); Sat, 27 Feb 2010 02:36:59 -0800 (PST) Sender: Antoine Brodin Date: Sat, 27 Feb 2010 11:36:56 +0100 From: Antoine Brodin To: Ruslan Ermilov Message-Id: <20100227113656.a3ea6ad5.antoine@FreeBSD.org> In-Reply-To: <20100227091911.GB47001@edoofus.dev.vega.ru> References: <201002262326.o1QNQFVs084793@svn.freebsd.org> <20100227091911.GB47001@edoofus.dev.vega.ru> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.18.6; i386-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Sat__27_Feb_2010_11_36_56_+0100_Y8X=WAEW2li2xQXT" Cc: svn-src-head@freebsd.org, Antoine Brodin , src-committers@freebsd.org, svn-src-all@freebsd.org Subject: Re: svn commit: r204379 - head/tools/build/mk X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Feb 2010 10:37:15 -0000 This is a multi-part message in MIME format. --Multipart=_Sat__27_Feb_2010_11_36_56_+0100_Y8X=WAEW2li2xQXT Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Ruslan Ermilov wrote: > Picking up a random context... This doesn't handle the NO_MANCOMPRESS > case where manpages are installed uncompressed. What about the following patch. Index: Makefile.inc1 =================================================================== RCS file: /home/ncvs/src/Makefile.inc1,v retrieving revision 1.640 diff -u -r1.640 Makefile.inc1 --- Makefile.inc1 26 Jan 2010 10:00:26 -0000 1.640 +++ Makefile.inc1 27 Feb 2010 10:27:35 -0000 @@ -1259,7 +1259,7 @@ @echo ">>> Removing old files (only deletes safe to delete libs)" # Ask for every old file if the user really wants to remove it. # It's annoying, but better safe than sorry. - @for file in ${OLD_FILES}; do \ + @for file in ${OLD_FILES} ${OLD_FILES:Musr/share/*man/*.gz:R}; do \ if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ rm ${RM_I} "${DESTDIR}/$${file}"; \ @@ -1279,7 +1279,7 @@ check-old-files: @echo ">>> Checking for old files" - @for file in ${OLD_FILES}; do \ + @for file in ${OLD_FILES} ${OLD_FILES:Musr/share/*man/*.gz:R}; do \ if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ echo "${DESTDIR}/$${file}"; \ fi; \ Cheers, Antoine --Multipart=_Sat__27_Feb_2010_11_36_56_+0100_Y8X=WAEW2li2xQXT Content-Type: text/x-diff; name="M.diff" Content-Disposition: attachment; filename="M.diff" Content-Transfer-Encoding: 7bit Index: Makefile.inc1 =================================================================== RCS file: /home/ncvs/src/Makefile.inc1,v retrieving revision 1.640 diff -u -r1.640 Makefile.inc1 --- Makefile.inc1 26 Jan 2010 10:00:26 -0000 1.640 +++ Makefile.inc1 27 Feb 2010 10:27:35 -0000 @@ -1259,7 +1259,7 @@ @echo ">>> Removing old files (only deletes safe to delete libs)" # Ask for every old file if the user really wants to remove it. # It's annoying, but better safe than sorry. - @for file in ${OLD_FILES}; do \ + @for file in ${OLD_FILES} ${OLD_FILES:Musr/share/*man/*.gz:R}; do \ if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ rm ${RM_I} "${DESTDIR}/$${file}"; \ @@ -1279,7 +1279,7 @@ check-old-files: @echo ">>> Checking for old files" - @for file in ${OLD_FILES}; do \ + @for file in ${OLD_FILES} ${OLD_FILES:Musr/share/*man/*.gz:R}; do \ if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ echo "${DESTDIR}/$${file}"; \ fi; \ --Multipart=_Sat__27_Feb_2010_11_36_56_+0100_Y8X=WAEW2li2xQXT--