FreeBSD standard shell does not support substring expansion.

Switch to using awk to get a string of spaces.
This commit is contained in:
Chris Johns
2014-07-10 15:56:11 +10:00
parent e1f446d3c1
commit 76ad756c09

View File

@@ -8,7 +8,6 @@ last_arch=""
cfg_list=$(LANG=C LC_COLLATE=C find ${base} -name \*.cfg | sort)
max_bsp_len=0
spaces=" "
for bsp in ${cfg_list};
do
@@ -18,6 +17,7 @@ do
max_bsp_len=$len
fi
done
max_bsp_len=$(expr ${max_bsp_len} + 2)
echo "RTEMS 4.11"
for bsp_path in ${cfg_list};
@@ -29,7 +29,8 @@ do
echo "${arch}:"
last_arch=${arch}
fi
echo " ${bsp}${spaces:${#bsp}}${path}"
spaces=$(echo ${bsp} | awk '{ printf("%*s", '${max_bsp_len}' -length(), " "); }')
echo " ${bsp}${spaces}${path}"
done
exit 0