summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
Diffstat (limited to 'config-db')
-rwxr-xr-xconfig-db/slxldd.pl7
1 files changed, 0 insertions, 7 deletions
diff --git a/config-db/slxldd.pl b/config-db/slxldd.pl
index c39e56fa..ee887e01 100755
--- a/config-db/slxldd.pl
+++ b/config-db/slxldd.pl
@@ -34,11 +34,6 @@ my (
%libInfo,
);
-# array of regexes that match on libraries which shall be ignored:
-my @ignoreLibs = (
- '^ld-linux.*\.so',
-);
-
GetOptions(
'help|?' => \$helpReq,
'root-path=s' => \$rootPath,
@@ -124,8 +119,6 @@ sub addLib
{
my $lib = shift;
- return if grep { $lib =~ m[$_] } @ignoreLibs;
-
if (!exists $libInfo{$lib}) {
push @libs, $lib;
my $libPath;