summaryrefslogtreecommitdiffstats
path: root/scripts/makepkg.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/makepkg.in')
-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))