From 8e5c9f349877af07dde4804974d47625c1292956 Mon Sep 17 00:00:00 2001 From: Yang Yujie Date: Wed, 6 Sep 2023 17:57:47 +0800 Subject: [PATCH 070/124] LoongArch: Fix unintentional bash-ism in r14-3665. gcc/ChangeLog: * config.gcc: remove non-POSIX syntax "<<<". Signed-off-by: Peng Fan Signed-off-by: ticat_fp --- gcc/config.gcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config.gcc b/gcc/config.gcc index 19f584344..57e724080 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -5263,7 +5263,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 -- 2.33.0