]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(installation_problem): Filter out libpthread_db.
authorUlrich Drepper <drepper@redhat.com>
Thu, 2 Dec 1999 08:24:27 +0000 (08:24 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 2 Dec 1999 08:24:27 +0000 (08:24 +0000)
scripts/test-installation.pl

index 6e640cd4cc1ec91b95aeaea9c9203ab30cd8c1fa..b54a23e2b91b884f5ccdc7f1112694c6e0320558 100755 (executable)
@@ -105,8 +105,9 @@ while (<SOVERSIONS>) {
     # - 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;
     }