From: Abdullah <3bd3bdr@gmail.com>
To: reilly@reillybrogan.com
Cc: dash@vger.kernel.org
Subject: Re: bug: 0.5.13 regression in parsing
Date: Mon, 22 Sep 2025 23:40:02 +0300 [thread overview]
Message-ID: <20250922204617.3648-1-3bd3bdr@gmail.com> (raw)
In-Reply-To: <105f1d0e-f7c4-431b-b95d-efad442aaa34@reillybrogan.com>
Same error also happened to me with dash 0.5.12.
But I assume the bug is not from dash but from libtool.
> archive_expsym_cmds="echo "{ global:" > $output_objdir/$libname.ver~
> cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >>
> $output_objdir/$libname.ver~
> echo "local: *; };" >> $output_objdir/$libname.ver~
> $CC -shared $pic_flag $libobjs $deplibs $compiler_flags
> $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver
> -o $lib"
That is a broken syntax, they should've used single quotes.
I.e.:
> archive_expsym_cmds="echo '{ global:' > $output_objdir/$libname.ver~
> cat $export_symbols | $SED -e 's/\(.*\)/\1;/' >>
> $output_objdir/$libname.ver~
> echo 'local: *; };' >> $output_objdir/$libname.ver~
> $CC -shared $pic_flag $libobjs $deplibs $compiler_flags
> $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver
> -o $lib"
next prev parent reply other threads:[~2025-09-22 20:46 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-22 19:34 bug: 0.5.13 regression in parsing Reilly Brogan
2025-09-22 20:40 ` Abdullah [this message]
2025-09-23 6:29 ` Herbert Xu
2025-09-23 10:11 ` Harald van Dijk
2025-09-23 10:33 ` Herbert Xu
2025-09-23 10:36 ` Herbert Xu
2025-09-23 10:59 ` Herbert Xu
2025-09-23 11:03 ` Harald van Dijk
2025-09-23 15:00 ` [PATCH] expand: Fix typo in pmatch for wildcard search Herbert Xu
2025-09-23 20:47 ` reilly
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250922204617.3648-1-3bd3bdr@gmail.com \
--to=3bd3bdr@gmail.com \
--cc=dash@vger.kernel.org \
--cc=reilly@reillybrogan.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.