From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B61501391DB for ; Tue, 29 Jul 2014 07:58:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7533E0899; Tue, 29 Jul 2014 07:58:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45F1DE0899 for ; Tue, 29 Jul 2014 07:58:45 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38302340163 for ; Tue, 29 Jul 2014 07:58:44 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2166) id 07E162004E; Tue, 29 Jul 2014 07:58:42 +0000 (UTC) From: "Samuli Suominen (ssuominen)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ssuominen@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig/files: pkgconfig-0.28-strip_system_library_dirs_reliably.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: pkgconfig-0.28-strip_system_library_dirs_reliably.patch X-VCS-Directories: dev-util/pkgconfig/files X-VCS-Committer: ssuominen X-VCS-Committer-Name: Samuli Suominen Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140729075843.07E162004E@flycatcher.gentoo.org> Date: Tue, 29 Jul 2014 07:58:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 21c0d47f-ea14-4662-9df0-001692532c0d X-Archives-Hash: d4206a922519981db0f5404abd3fa1d5 ssuominen 14/07/29 07:58:42 Added: pkgconfig-0.28-strip_system_library_dirs_reliably.patch Log: Strip system library directories reliably wrt #512336 by Mike Frysinger (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D) Revision Changes Path 1.1 dev-util/pkgconfig/files/pkgconfig-0.28-strip_system_library_dirs_reliably.patch 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 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 Index: pkgconfig-0.28-strip_system_library_dirs_reliably.patch =================================================================== http://bugs.gentoo.org/512336 http://bugs.freedesktop.org/show_bug.cgi?id=78077 >From 8691b580ab3f7ac36182060e2253307fbd0aba75 Mon Sep 17 00:00:00 2001 From: Andrew Oakley Date: Tue, 29 Apr 2014 13:14:35 +0100 Subject: [PATCH 1/1] Strip system library directories reliably This loop was changed from a while loop to a for loop in commit 9bf6277b, but the iterator is now advanced twice each time round the loop. --- pkg.c | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg.c b/pkg.c index 3697fec..c847c95 100644 --- a/pkg.c +++ b/pkg.c @@ -917,7 +917,6 @@ verify_package (Package *pkg) } system_dir_iter = system_dir_iter->next; } - iter = iter->next; } g_list_free (system_directories); -- 1.8.3.2