Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig/files: pkgconfig-0.28-strip_system_library_dirs_reliably.patch
Date: Tue, 29 Jul 2014 07:58:47
Message-Id: 20140729075843.07E162004E@flycatcher.gentoo.org
1 ssuominen 14/07/29 07:58:42
2
3 Added:
4 pkgconfig-0.28-strip_system_library_dirs_reliably.patch
5 Log:
6 Strip system library directories reliably wrt #512336 by Mike Frysinger
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.1 dev-util/pkgconfig/files/pkgconfig-0.28-strip_system_library_dirs_reliably.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/files/pkgconfig-0.28-strip_system_library_dirs_reliably.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/files/pkgconfig-0.28-strip_system_library_dirs_reliably.patch?rev=1.1&content-type=text/plain
15
16 Index: pkgconfig-0.28-strip_system_library_dirs_reliably.patch
17 ===================================================================
18 http://bugs.gentoo.org/512336
19 http://bugs.freedesktop.org/show_bug.cgi?id=78077
20
21 From 8691b580ab3f7ac36182060e2253307fbd0aba75 Mon Sep 17 00:00:00 2001
22 From: Andrew Oakley <aoakley@××××××.com>
23 Date: Tue, 29 Apr 2014 13:14:35 +0100
24 Subject: [PATCH 1/1] Strip system library directories reliably
25
26 This loop was changed from a while loop to a for loop in commit
27 9bf6277b, but the iterator is now advanced twice each time round the
28 loop.
29 ---
30 pkg.c | 1 -
31 1 file changed, 1 deletion(-)
32
33 diff --git a/pkg.c b/pkg.c
34 index 3697fec..c847c95 100644
35 --- a/pkg.c
36 +++ b/pkg.c
37 @@ -917,7 +917,6 @@ verify_package (Package *pkg)
38 }
39 system_dir_iter = system_dir_iter->next;
40 }
41 - iter = iter->next;
42 }
43 g_list_free (system_directories);
44
45 --
46 1.8.3.2