diff mac/make-package @ 48979:81b2338bea6e

* make-package: Fix typo where tmpparent was used instead of tempparent for calculating installedSize and compressedSize
author Steven Tamm <steventamm@mac.com>
date Fri, 27 Dec 2002 23:35:36 +0000
parents f433f827b70f
children dfea5194194f
line wrap: on
line diff
--- a/mac/make-package	Fri Dec 27 04:09:53 2002 +0000
+++ b/mac/make-package	Fri Dec 27 23:35:36 2002 +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}