aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-01-23 00:03:07 +0000
committerSam James <sam@gentoo.org>2025-01-23 00:04:59 +0000
commit6999916e6c7fe6ba3a7661d852757f59223416a3 (patch)
tree4f006b080b734ebf046b38be135a492f43a5dfb1 /ld
parentad450e788ab05b705b5ca1072d8fbb72b5ecf0bc (diff)
downloadfsf-binutils-gdb-6999916e6c7fe6ba3a7661d852757f59223416a3.zip
fsf-binutils-gdb-6999916e6c7fe6ba3a7661d852757f59223416a3.tar.gz
fsf-binutils-gdb-6999916e6c7fe6ba3a7661d852757f59223416a3.tar.bz2
ld: fix bashism in scripttempl/elf.sc
ld/ PR ld/32580 * scripttempl/elf.sc: Fix '==' bashism.
Diffstat (limited to 'ld')
-rw-r--r--ld/scripttempl/elf.sc2
1 files changed, 1 insertions, 1 deletions
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