LoongArch: Fix unintentional bash-ism in r14-3665.

gcc/ChangeLog:

	* config.gcc: remove non-POSIX syntax "<<<".
This commit is contained in:
Yang Yujie 2023-09-06 17:57:47 +08:00 committed by Lulu Cheng
parent 62a550e7ec
commit d07682dc25

View file

@ -5189,7 +5189,7 @@ case "${target}" in
if test x${parse_state} = x"abi-base"; then
# Base ABI type
case ${component} in
lp64d | lp64f | lp64s) elem_tmp="ABI_BASE_$(tr a-z A-Z <<< ${component}),";;
lp64d | lp64f | lp64s) elem_tmp="ABI_BASE_$(echo ${component} | tr a-z A-Z),";;
*)
echo "Unknown base ABI \"${component}\" in --with-multilib-list." 1>&2
exit 1