summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2012-04-26 09:18:48 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2012-04-26 09:19:54 +0530
commit6e236b92765cdafb46d19e4907471699accc8269 (patch)
tree84832025094c60c94f4ad329324b549fa77da6ce /scripts
parentaab39a094e0f1b69d661999e3298972ef3060aa0 (diff)
move libgcc_s soname definition to shlib-versions
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/test-installation.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl
index c4f3d6df01..1b22086bf9 100755
--- a/scripts/test-installation.pl
+++ b/scripts/test-installation.pl
@@ -1,5 +1,5 @@
#! /usr/bin/perl -w
-# Copyright (C) 1997, 1998, 1999, 2004, 2011 Free Software Foundation, Inc.
+# Copyright (C) 1997-2012 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1997.
@@ -105,9 +105,10 @@ while (<SOVERSIONS>) {
# - libnss1_* from glibc-compat add-on
# - libthread_db since it contains unresolved references
# - it's just a test NSS module
+ # - We don't provide the libgcc so we don't test it
if ($name ne "nss_ldap" && $name ne "db1"
&& !($name =~/^nss1_/) && $name ne "thread_db"
- && $name ne "nss_test1") {
+ && $name ne "nss_test1" && $name ne "libgcc_s") {
$link_libs .= " -l$name";
$versions{$name} = $version;
}