diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2021-07-21 23:58:33 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2021-07-22 00:00:50 +0100 |
commit | 13b242e2fdfb020f29eaa302e1f7b0f6bb65395b (patch) | |
tree | bf99112846fdd4c1bb7e8a508abf7222a7ea9c5a /.parse-depfile | |
parent | 7911c0536c03bca81304521bf7594366a6449044 (diff) | |
download | pack-13b242e2fdfb020f29eaa302e1f7b0f6bb65395b.tar.gz pack-13b242e2fdfb020f29eaa302e1f7b0f6bb65395b.tar.xz pack-13b242e2fdfb020f29eaa302e1f7b0f6bb65395b.zip |
.parse-depfile -> .parse-deps - as it's no longer used with files
Diffstat (limited to '.parse-depfile')
-rwxr-xr-x | .parse-depfile | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/.parse-depfile b/.parse-depfile deleted file mode 100755 index cad20d9..0000000 --- a/.parse-depfile +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/sed -f -# remove target -1s/^[^:]*: // -# collapse lines -:loop -/\\$/ { - N - s/ \\\n// - b loop -} -# split on unescaped spaces -s/\([^\]\) /\1\ -/g -# unescape spaces -s/\\ / /g |