sh(1) is not make(1), use newlines inside double quotes
authorkn <kn@openbsd.org>
Tue, 4 Oct 2022 19:34:44 +0000 (19:34 +0000)
committerkn <kn@openbsd.org>
Tue, 4 Oct 2022 19:34:44 +0000 (19:34 +0000)
commitd901c601a30df9efa9cd7c778cd1c3a94b8d323c
tree364231e92f6886a2602fe54320c02d4d9b390a34
parente856d5e6cc8ed890b8985173568e2f31add5373b
sh(1) is not make(1), use newlines inside double quotes

sh(1) happily accepts newlines inside double quotes just like in scripts:

        $ sh -c "echo foo
echo bar"
foo
bar

So no need to squash things into a single line as usually done inside make
targets where each makefile line is considered its own script unless
continued with trailing backslashes.

OK millert
distrib/miniroot/install.sub