* make-package: Fix typo where tmpparent was used instead of
tempparent for calculating installedSize and compressedSize
This commit is contained in:
parent
271f4a9e80
commit
5ea7adcc85
2 changed files with 7 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue