From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Martin Fredriksson Newsgroups: gmane.emacs.devel Subject: mac/make-package, suggested patch Date: Sat, 28 Dec 2002 00:24:28 +0100 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <586F4300-19F2-11D7-8795-003065478022@crt.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v551) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1041031519 3374 80.91.224.249 (27 Dec 2002 23:25:19 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 27 Dec 2002 23:25:19 +0000 (UTC) Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18S3qw-0000sH-00 for ; Sat, 28 Dec 2002 00:25:18 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18S3w9-00036v-00 for ; Sat, 28 Dec 2002 00:30:42 +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 18S3qG-0003so-08 for emacs-devel@quimby.gnus.org; Fri, 27 Dec 2002 18:24:36 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18S3px-0003rS-00 for emacs-devel@gnu.org; Fri, 27 Dec 2002 18:24:17 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18S3pv-0003r6-00 for emacs-devel@gnu.org; Fri, 27 Dec 2002 18:24:16 -0500 Original-Received: from nic.crt.se ([193.12.107.10]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18S3pv-0003ql-00 for emacs-devel@gnu.org; Fri, 27 Dec 2002 18:24:15 -0500 Original-Received: from mail.crt.se (postiljon.crt.se [172.16.1.14]) by nic.crt.se (Postfix) with ESMTP id E93EC528E for ; Sat, 28 Dec 2002 00:24:13 +0100 (MET) Original-Received: from crt.se (stargate.crt.se [172.16.0.11]) by mail.crt.se (Postfix) with ESMTP id 0C15D1DE9 for ; Sat, 28 Dec 2002 00:24:12 +0100 (MET) Original-To: emacs-devel@gnu.org X-Mailer: Apple Mail (2.551) 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:10359 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:10359 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}