From d8e90ed014e49c94c61afe2f0a8fd902320bb778 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 8 Apr 2013 13:57:35 +0100 Subject: [PATCH] Ignore /etc/ld.so.conf.d/* ./configure opens every file in /etc/ld.so.conf, pulling in lots of false dependencies. Thanks: Panu Matilainen --- auto-br-analyze.pl.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/auto-br-analyze.pl.in b/auto-br-analyze.pl.in index 7aa7e61..7e62117 100755 --- a/auto-br-analyze.pl.in +++ b/auto-br-analyze.pl.in @@ -44,6 +44,10 @@ while () { next unless defined $dev; next if $homedir && $file =~ /^$homedir/; + # ./configure opens every file in /etc/ld.so.conf, pulling + # in lots of false dependencies. + next if $file =~ m{^/etc/ld\.so\.conf\.d/.*\.conf$}; + $files{$file} = 1; } } -- 1.8.3.1