1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

* make-package: Fix typo where tmpparent was used instead of

tempparent for calculating installedSize and compressedSize
This commit is contained in:
Steven Tamm 2002-12-27 23:35:36 +00:00
parent 271f4a9e80
commit 5ea7adcc85
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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}