ash: expand: Fix trailing newlines processing in backquote expanding
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 17 Feb 2020 09:24:32 +0000 (10:24 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 17 Feb 2020 09:24:32 +0000 (10:24 +0100)
commit9ee5892798be81f7a6f3e070ecd52cbf0d55740e
tree9801edcaadd307687df6f33cad7ba7edd1e2b75b
parentc2ce888030b6b880b3229520a8ff7d7026248a9a
ash: expand: Fix trailing newlines processing in backquote expanding

Upstream commit:

    Date: Mon, 29 Apr 2019 19:13:37 +0500
    expand: Fix trailing newlines processing in backquote expanding

    According to POSIX.1-2008 we should remove newlines only at the end of
    the substitution. Newlines-only substitions causes dash to remove
    newlines before beggining of the substitution. The following code:

        cat <<END
        1
        $(echo "")
        2
        END

    prints "1<newline>2" instead of expected "1<newline><newline>2".

    This patch fixes trailing newlines processing in backquote expanding.

Signed-off-by: Nikolai Merinov <n.merinov@inango-systems.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c
shell/ash_test/ash-psubst/tick_in_heredoc.right [new file with mode: 0644]
shell/ash_test/ash-psubst/tick_in_heredoc.tests [new file with mode: 0755]
shell/hush_test/hush-psubst/tick_in_heredoc.right [new file with mode: 0644]
shell/hush_test/hush-psubst/tick_in_heredoc.tests [new file with mode: 0755]