aboutsummaryrefslogtreecommitdiffstats
path: root/.parse-deps
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2021-08-05 11:27:24 +0100
committerTomasz Kramkowski <tk@the-tk.com>2021-08-05 11:27:24 +0100
commit1bfd9a05a71e3ec729b65ff040a2496b7b1f8a23 (patch)
tree77730ef41c413780f72bf671d35dd972bd47d351 /.parse-deps
parent68b64352f02980b3b5a7ea47886e95151164c5a4 (diff)
downloadpack-1bfd9a05a71e3ec729b65ff040a2496b7b1f8a23.tar.gz
pack-1bfd9a05a71e3ec729b65ff040a2496b7b1f8a23.tar.xz
pack-1bfd9a05a71e3ec729b65ff040a2496b7b1f8a23.zip
.parse-deps: No longer executable, called with sed -f
as #!/usr/bin/sed is not portable, it is easier to just use sed -f
Diffstat (limited to '.parse-deps')
-rwxr-xr-x.parse-deps17
1 files changed, 0 insertions, 17 deletions
diff --git a/.parse-deps b/.parse-deps
deleted file mode 100755
index e8dc74b..0000000
--- a/.parse-deps
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/sed -f
-# remove target
-1s/^[^:]*: //
-# collapse lines
-:loop
-/\\$/ {
- s|///*|/|g
- s|$|//|
- N
- s|\\//. *||
- b loop
-}
-# split on unescaped spaces
-s/\([^\]\) */\1\
-/g
-# unescape spaces
-s/\\ / /g