From 5ea7adcc85bde756df818f7f6da70ba28f16548b Mon Sep 17 00:00:00 2001 From: Steven Tamm Date: Fri, 27 Dec 2002 23:35:36 +0000 Subject: [PATCH] * make-package: Fix typo where tmpparent was used instead of tempparent for calculating installedSize and compressedSize --- mac/ChangeLog | 5 +++++ mac/make-package | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mac/ChangeLog b/mac/ChangeLog index 0a2e8f8bd3..c81c8bc7e6 100644 --- a/mac/ChangeLog +++ b/mac/ChangeLog @@ -1,3 +1,8 @@ +2002-12-27 Steven Tamm + + * make-package: Fix typo where tmpparent was used instead of + tempparent for calculating installedSize and compressedSize + 2002-12-10 Andreas Schwab * make-package: Fix syntax for find. diff --git a/mac/make-package b/mac/make-package index df781c0f49..dc058588f1 100755 --- a/mac/make-package +++ b/mac/make-package @@ -331,8 +331,8 @@ mkbom ${tempparentfull} Emacs.pkg/Contents/Resources/Emacs.bom 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} -- 2.39.2