]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/patches/glibc-test-installation.pl-nss_test1.patch
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next
[people/teissler/ipfire-2.x.git] / src / patches / glibc-test-installation.pl-nss_test1.patch
1 From 9191c04a7e19fffbea0a08523e579cd8e55142df Mon Sep 17 00:00:00 2001
2 From: Ulrich Drepper <drepper@gmail.com>
3 Date: Sat, 23 Jul 2011 15:28:31 -0400
4 Subject: [PATCH] Adjust test for correct installation
5
6 diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl
7 index 90cd9d7..25a919b 100755
8 --- a/scripts/test-installation.pl
9 +++ b/scripts/test-installation.pl
10 @@ -1,5 +1,5 @@
11 #! /usr/bin/perl -w
12 -# Copyright (C) 1997, 1998, 1999, 2004 Free Software Foundation, Inc.
13 +# Copyright (C) 1997, 1998, 1999, 2004, 2011 Free Software Foundation, Inc.
14 # This file is part of the GNU C Library.
15 # Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1997.
16
17 @@ -105,8 +105,10 @@ while (<SOVERSIONS>) {
18 # - libdb1 since it conflicts with libdb
19 # - libnss1_* from glibc-compat add-on
20 # - libthread_db since it contains unresolved references
21 + # - it's just a test NSS module
22 if ($name ne "nss_ldap" && $name ne "db1"
23 - && !($name =~/^nss1_/) && $name ne "thread_db") {
24 + && !($name =~/^nss1_/) && $name ne "thread_db"
25 + && $name ne "nss_test1") {
26 $link_libs .= " -l$name";
27 $versions{$name} = $version;
28 }
29 --
30 1.7.3.4
31