summaryrefslogtreecommitdiffstats
path: root/bin/distdep
diff options
context:
space:
mode:
Diffstat (limited to 'bin/distdep')
-rw-r--r--bin/distdep7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/distdep b/bin/distdep
index 287ce84..1a7b0ad 100644
--- a/bin/distdep
+++ b/bin/distdep
@@ -1,6 +1,11 @@
#!/usr/bin/perl -p
# Usage: $0 [<].depend
+
# Takes dependency info and generates on stdout dependencies suitable for
-# distribution by removing all the system include files from the list.
+# distribution by removing all the system include files from the list and
+# removing all but the base name of other include files (since the Makefiles
+# contain the logic for searching).
+
($h,$_)=/\s*\\/?$h.$`:("","$h\n");
s|( +/\S*)*( *)|$2?" \\\n ":""|eg;
+s|(([-\w\.]+)/)+([-\w\.]+)|\3|g;