From: Nick Clifton Date: Sun, 2 Feb 2025 11:29:51 +0000 (+0000) Subject: PR 32580: Partial fix for problems with the ksh shell and the elf linker script X-Git-Tag: binutils-2_44~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=da36679b3240a7ffe9497ed63f3f522823b65d52;p=thirdparty%2Fbinutils-gdb.git PR 32580: Partial fix for problems with the ksh shell and the elf linker script --- diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc index be8d19fcf11..e92b93f946d 100644 --- a/ld/scripttempl/elf.sc +++ b/ld/scripttempl/elf.sc @@ -122,7 +122,7 @@ # # The following all mean "if foo is defined then do/insert ": # -# test -z "$foo" || +# test -z "$foo" || # test -n "$foo" && # if test -n "$foo"; then # if [ -n "$foo" ]; then @@ -140,7 +140,7 @@ # positive tests and a NOR for negative tests. ie, the following all do # if either or both of and are defined: # -# test -z "$foo$bar" || +# test -z "$foo$bar" || # test -n "$foo$bar" && # if test -n "$foo$bar"; then # @@ -449,7 +449,7 @@ emit_noinit() if test "${HAVE_NOINIT}" != "yes"; then return fi -cat <