summaryrefslogtreecommitdiff
path: root/mac
diff options
context:
space:
mode:
authorSteven Tamm <steventamm@mac.com>2002-12-27 23:35:36 +0000
committerSteven Tamm <steventamm@mac.com>2002-12-27 23:35:36 +0000
commit5ea7adcc85bde756df818f7f6da70ba28f16548b (patch)
tree5c6f7b01d37832f7449f37bb7fb2cb9967b42c74 /mac
parent271f4a9e80290bc17439646e54021b3fe545b760 (diff)
downloademacs-5ea7adcc85bde756df818f7f6da70ba28f16548b.tar.gz
* make-package: Fix typo where tmpparent was used instead of
tempparent for calculating installedSize and compressedSize
Diffstat (limited to 'mac')
-rw-r--r--mac/ChangeLog5
-rwxr-xr-xmac/make-package4
2 files changed, 7 insertions, 2 deletions
diff --git a/mac/ChangeLog b/mac/ChangeLog
index 0a2e8f8bd39..c81c8bc7e6b 100644
--- a/mac/ChangeLog
+++ b/mac/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-27 Steven Tamm <steventamm@mac.com>
+
+ * make-package: Fix typo where tmpparent was used instead of
+ tempparent for calculating installedSize and compressedSize
+
2002-12-10 Andreas Schwab <schwab@suse.de>
* make-package: Fix syntax for find.
diff --git a/mac/make-package b/mac/make-package
index df781c0f499..dc058588f1e 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}