LoongArch: Fix unintentional bash-ism in r14-3665.
gcc/ChangeLog: * config.gcc: remove non-POSIX syntax "<<<".
This commit is contained in:
parent
62a550e7ec
commit
d07682dc25
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue