summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2007-04-04 07:30:14 +0200
committerAaron Griffin <aaronmgriffin@gmail.com>2007-04-04 07:30:14 +0200
commit76f816b9f764434d02e90207ee4656ebae2b6a8c (patch)
treeb115bfcb7322e63698cae0ffc9fd945d8fee2585 /scripts
parent9c9e18ef32c0cf3fe33ed251d28c70651bb85f65 (diff)
downloadpacman-76f816b9f764434d02e90207ee4656ebae2b6a8c.tar.gz
pacman-76f816b9f764434d02e90207ee4656ebae2b6a8c.tar.xz
Backport changes from 3.0.1
* Align makepkg -g checksums (Tom Killian <tom@archlinux.org>) * Use additional case-sensitive string compare to defeat locale issues (tr_TR) * Added Russian mirror * Fix a -R failure when trying to remove the same target twice * Bump configure.ac version to 3.0.1 Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/makepkg.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/makepkg.in b/scripts/makepkg.in
index 62a2a444..e2627eb1 100755
--- a/scripts/makepkg.in
+++ b/scripts/makepkg.in
@@ -762,7 +762,11 @@ else
if [ $ct -eq 0 ]; then
echo -n "${integrity_name}s=("
else
- echo -ne "\t "
+ indent=0
+ while [ $indent -lt $((${#integrity_name}+3)) ]; do
+ echo -n " "
+ indent=$(($indent+1))
+ done
fi
echo -n "'$sum'"
ct=$(($ct+1))