aboutsummaryrefslogtreecommitdiffstats
path: root/mac/make-package
diff options
context:
space:
mode:
authorSteven Tamm <[email protected]>2002-12-27 23:35:36 +0000
committerSteven Tamm <[email protected]>2002-12-27 23:35:36 +0000
commit5ea7adcc85bde756df818f7f6da70ba28f16548b (patch)
tree5c6f7b01d37832f7449f37bb7fb2cb9967b42c74 /mac/make-package
parent271f4a9e80290bc17439646e54021b3fe545b760 (diff)
* make-package: Fix typo where tmpparent was used instead of
tempparent for calculating installedSize and compressedSize
Diffstat (limited to 'mac/make-package')
-rwxr-xr-xmac/make-package4
1 files changed, 2 insertions, 2 deletions
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}