From: Ulrich Drepper Date: Thu, 2 Dec 1999 08:24:27 +0000 (+0000) Subject: (installation_problem): Filter out libpthread_db. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=278d8ea7cf884f0ca79ce9602aa120922367ffbb;p=thirdparty%2Fglibc.git (installation_problem): Filter out libpthread_db. --- diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl index 6e640cd4cc1..b54a23e2b91 100755 --- a/scripts/test-installation.pl +++ b/scripts/test-installation.pl @@ -105,8 +105,9 @@ while () { # - nss_ldap since it's not yet available # - libdb1 since it conflicts with libdb # - libnss1_* from glibc-compat add-on + # - libthread_db since it contains unresolved references if ($name ne "nss_ldap" && $name ne "db1" - && !($name =~/^nss1_/)) { + && !($name =~/^nss1_/) && $name ne "thread_db") { $link_libs .= " -l$name"; $versions{$name} = $version; }