Mercurial > emacs
changeset 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 | 8975380e6f9e |
children | 1735ba4bf05b |
files | mac/ChangeLog mac/make-package |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mac/ChangeLog Fri Dec 27 04:09:53 2002 +0000 +++ b/mac/ChangeLog Fri Dec 27 23:35:36 2002 +0000 @@ -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.
--- 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}