summaryrefslogtreecommitdiffstats
path: root/util/clean-depend.pl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-04-25 09:21:05 +0000
committerBodo Möller <bodo@openssl.org>1999-04-25 09:21:05 +0000
commita75b81ad954c02846d54b7f77d3efae8487554ca (patch)
tree28cd2ebb5595f2ee393d2fc68699347e9f25806c /util/clean-depend.pl
parent9c4711c73a5fa0d7d8053e42ce0d8c81f25c8b5c (diff)
Removed traces of cryptall.h, and did a "make depend".
Submitted by: Reviewed by: PR:
Diffstat (limited to 'util/clean-depend.pl')
-rwxr-xr-xutil/clean-depend.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/clean-depend.pl b/util/clean-depend.pl
index 7819deee4e..af676af751 100755
--- a/util/clean-depend.pl
+++ b/util/clean-depend.pl
@@ -16,6 +16,7 @@ while(<STDIN>) {
next if !defined $deps;
my @deps=split ' ',$deps;
@deps=grep(!/^\/usr\/include/,@deps);
+ @deps=grep(!/^\/usr\/lib\/gcc-lib/,@deps);
push @{$files{$file}},@deps;
}