diff options
Diffstat (limited to 'iconvdata')
-rwxr-xr-x | iconvdata/tst-table.sh | 2 | ||||
-rwxr-xr-x | iconvdata/tst-tables.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/iconvdata/tst-table.sh b/iconvdata/tst-table.sh index 14ab196d83..5283ad5f5d 100755 --- a/iconvdata/tst-table.sh +++ b/iconvdata/tst-table.sh @@ -35,7 +35,7 @@ export LC_ALL set -e # Get the charmap. -${SHELL} tst-table-charmap.sh ${charmap:-$charset} \ +./tst-table-charmap.sh ${charmap:-$charset} \ < ../localedata/charmaps/${charmap:-$charset} \ > ${objpfx}tst-${charset}.charmap.table # When the charset is GB18030, truncate this table because for this encoding, diff --git a/iconvdata/tst-tables.sh b/iconvdata/tst-tables.sh index eaf84dc2f4..77d9d182c7 100755 --- a/iconvdata/tst-tables.sh +++ b/iconvdata/tst-tables.sh @@ -262,7 +262,7 @@ while read charset charmap; do if test "$charset" = GB18030; then echo "This might take a while" 1>&2; fi case ${charset} in \#*) continue;; esac echo -n "Testing ${charset}" 1>&2 - if ${SHELL} tst-table.sh ${common_objpfx} ${objpfx} "${run_program_prefix}" \ + if ./tst-table.sh ${common_objpfx} ${objpfx} "${run_program_prefix}" \ ${charset} ${charmap} < /dev/null; then echo 1>&2 else |