index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Isaac Good <pacman@isaac.otherinbox.com> | 2009-11-17 14:16:48 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-11-30 21:06:17 -0600 |
commit | 6c8f817040acb74bbf696e75a302280d5f07c98a (patch) | |
tree | 42ceae35ec24d5b5b9da41b8532febfe76545878 | |
parent | 96b34308fe6aed5ef002c3769639ad33dac923c7 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 5 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 3d776f06..1d9d8f13 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -514,11 +514,10 @@ generate_checksums() { local numsrc=${#source[@]} echo -n "${integ}sums=(" - local i=0; + local i local indent='' - while [ $i -lt $((${#integ}+6)) ]; do + for (( i = 0; i < ${#integ} + 6; i++ )); do indent="$indent " - i=$(($i+1)) done local netfile |