aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorYang Yujie <yangyujie@loongson.cn>2023-09-06 17:57:47 +0800
committerLulu Cheng <chenglulu@loongson.cn>2023-09-08 17:51:13 +0800
commitd07682dc2546754c3b188d97149714cfd11a6990 (patch)
treec69b30434da352fb7a771dc10328c2ee491c4306 /gcc
parent62a550e7ec9a524f67344bc12634bff2a2054d72 (diff)
downloadgcc-d07682dc2546754c3b188d97149714cfd11a6990.zip
gcc-d07682dc2546754c3b188d97149714cfd11a6990.tar.gz
gcc-d07682dc2546754c3b188d97149714cfd11a6990.tar.bz2
LoongArch: Fix unintentional bash-ism in r14-3665.
gcc/ChangeLog: * config.gcc: remove non-POSIX syntax "<<<".
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config.gcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc
index b2fe7c7..6d4c8be 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -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