diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2021-08-05 09:15:26 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2021-08-05 09:37:09 +0100 |
commit | 3f441bd58ae91a38e1f0f872c80a126166e85338 (patch) | |
tree | 31bbd91786c77a98bbe6f76beee4959327f8f056 /common.h | |
parent | 7ece26f7f86c099d0e483a749dbe77db73b2cb9c (diff) | |
download | pack-3f441bd58ae91a38e1f0f872c80a126166e85338.tar.gz pack-3f441bd58ae91a38e1f0f872c80a126166e85338.tar.xz pack-3f441bd58ae91a38e1f0f872c80a126166e85338.zip |
fix .parse-deps when input spans multiple lines
.parse-deps breaks when inputs such as the following are passed:
foo.o: \
foo.c \
foo.h
There's 3 issues:
1. The first \ wouldn't be folded as the space prior to the \ would be
removed by the removal of the target name.
2. Extra spaces would end up in front of every name in the final output.
3. \n in the pattern of the s command is not portable to non-gnu-sed.
The new version's folding loop:
1. Removes any double forward slashes currently present in the pattern
space.
2. Adds a double forward slash at the end of the line.
3. Removes the backslash, double forward slash, character following it
(newline) and any spaces following that character.
This solves all three problems.
Diffstat (limited to 'common.h')
0 files changed, 0 insertions, 0 deletions