From 6999916e6c7fe6ba3a7661d852757f59223416a3 Mon Sep 17 00:00:00 2001 From: Sam James Date: Thu, 23 Jan 2025 00:03:07 +0000 Subject: ld: fix bashism in scripttempl/elf.sc ld/ PR ld/32580 * scripttempl/elf.sc: Fix '==' bashism. --- ld/scripttempl/elf.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc index deb69dd..be8d19f 100644 --- a/ld/scripttempl/elf.sc +++ b/ld/scripttempl/elf.sc @@ -912,7 +912,7 @@ emit_large_bss() return fi - if test "$1" == "0"; then + if test "$1" = "0"; then if test -n "${LARGE_BSS_AFTER_BSS}"; then return fi -- cgit v1.1