treewide: Remove continuation escape at end of commands

To avoid confusion and spurious newlines in the output.

Found by searching for a backslash followed by a newline, some
indentation, and then the end of multi-line string marker, using the
following extended regex:

```regex
\\\n +'';
```
This commit is contained in:
Victor Engmark
2026-03-17 16:47:55 +01:00
parent 8f37fcd1d2
commit c4f5dfad0d
80 changed files with 86 additions and 82 deletions
+1 -1
View File
@@ -2970,7 +2970,7 @@ let
postPatch = ''
substituteInPlace src/Makefile --replace-fail \
"all:\$(PROG) ../inst/bwa clean" \
"all:\$(PROG) ../inst/bwa" \
"all:\$(PROG) ../inst/bwa"
'';
});