]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - src/patches/glibc-test-installation.pl-nss_test1.patch
Merge remote-tracking branch 'ummeegge/iptraf-ng' into next
[people/teissler/ipfire-2.x.git] / src / patches / glibc-test-installation.pl-nss_test1.patch
CommitLineData
847a7298
MT
1From 9191c04a7e19fffbea0a08523e579cd8e55142df Mon Sep 17 00:00:00 2001
2From: Ulrich Drepper <drepper@gmail.com>
3Date: Sat, 23 Jul 2011 15:28:31 -0400
4Subject: [PATCH] Adjust test for correct installation
5
6diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl
7index 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--
301.7.3.4
31