index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2011-12-25 19:58:31 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-28 22:32:22 -0600 |
commit | b264fb9e9ddcc31dc8782390309421965e507383 (patch) | |
tree | c65f39987e25cc7552e0282d8b0ad125a88624ff /scripts/makepkg.sh.in | |
parent | 1b461374264abd62c54133e544dedd5feb866043 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 3 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 64b33c68..13185eec 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1109,8 +1109,7 @@ write_pkginfo() { else local packager="Unknown Packager" fi - local size="$(@DUPATH@ -sk)" - size="$(( ${size%%[^0-9]*} * 1024 ))" + local size="$(find . -print0 | xargs -0 @SIZECMD@ | awk '{ sum += $1 } END { print sum }')" msg2 "$(gettext "Generating %s file...")" ".PKGINFO" echo "# Generated by makepkg $myver" |