about summary refs log tree commit diff
path: root/scripts/test-installation.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test-installation.pl')
-rwxr-xr-xscripts/test-installation.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl
index 6e640cd4cc..b54a23e2b9 100755
--- a/scripts/test-installation.pl
+++ b/scripts/test-installation.pl
@@ -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;
     }