From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Steven Tamm Newsgroups: gmane.emacs.devel Subject: Re: mac/make-package, suggested patch Date: Fri, 27 Dec 2002 15:40:27 -0800 (PST) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <3159621.1041032427539.JavaMail.steventamm@mac.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1041032531 5939 80.91.224.249 (27 Dec 2002 23:42:11 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 27 Dec 2002 23:42:11 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18S47F-0001Xb-00 for ; Sat, 28 Dec 2002 00:42:09 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18S4CT-0003Ds-00 for ; Sat, 28 Dec 2002 00:47:33 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18S46u-0006qY-03 for emacs-devel@quimby.gnus.org; Fri, 27 Dec 2002 18:41:48 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18S46c-0006pm-00 for emacs-devel@gnu.org; Fri, 27 Dec 2002 18:41:30 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18S46a-0006pF-00 for emacs-devel@gnu.org; Fri, 27 Dec 2002 18:41:29 -0500 Original-Received: from a17-250-248-86.apple.com ([17.250.248.86] helo=smtpout.mac.com) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18S45o-0006fj-00 for emacs-devel@gnu.org; Fri, 27 Dec 2002 18:40:40 -0500 Original-Received: from woappsx14.mac.com (woappsx14-en1 [10.13.10.114]) by smtpout.mac.com (Xserve/MantshX 2.0) with ESMTP id gBRNeRFL025649; Fri, 27 Dec 2002 15:40:27 -0800 (PST) Original-Received: from woappsx14 (localhost [127.0.0.1]) by woappsx14.mac.com (8.10.2/8.10.2) with ESMTP id gBRNeRD29277; Fri, 27 Dec 2002 15:40:27 -0800 (PST) Original-To: Martin Fredriksson X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:10360 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:10360 Thanks for the patch; I was wondering why the installation numbers were inflated ;-). This change more than cosmetic because those numbers are what the installer uses to determine if there is enough disk space to install. I just checked this in. And AFAIK, this is the correct forum for patches of this nature. -Steven On Friday, Dec 27, 2002, at 03:24PM, Martin Fredriksson wrote: >I suggest a small modification to mac/make-package, patch below. The >patch solves a small, relatively unimportant (mostly cosmetic) problem. > I believe it just corrects a typing mistake. > >(I've only read emacs-devel for about a week, please let me know if I >should have sent this someplace else.) > >/m > >Index: make-package >=================================================================== >RCS file: /cvsroot/emacs/emacs/mac/make-package,v >retrieving revision 1.11 >diff -u -r1.11 make-package >--- make-package 10 Dec 2002 16:53:12 -0000 1.11 >+++ make-package 27 Dec 2002 21:50:46 -0000 >@@ -331,8 +331,8 @@ > echo "Generating sizes file" > sizesfile=Emacs.pkg/Contents/Resources/Emacs.sizes > >-numFiles=`du -a ${tmpparent} | wc -l` >-installedSize=`du -s ${tmpparent} | cut -f1` >+numFiles=`du -a ${tempparent} | wc -l` >+installedSize=`du -s ${tempparent} | cut -f1` > compressedSize=`du -s Emacs.pkg | cut -f1` > > echo "NumFiles ${numFiles}" > ${sizesfile} > > > >_______________________________________________ >Emacs-devel mailing list >Emacs-devel@gnu.org >http://mail.gnu.org/mailman/listinfo/emacs-devel > >