public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michal Gorny (mgorny)" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog eutils.eclass
Date: Tue, 23 Oct 2012 21:09:39 +0000 (UTC)	[thread overview]
Message-ID: <20121023210939.B408B21600@flycatcher.gentoo.org> (raw)

mgorny      12/10/23 21:09:39

  Modified:             ChangeLog eutils.eclass
  Log:
  prune_libtool_files(): fix variable reuse. Thanks to radhermit for the patch.

Revision  Changes    Path
1.462                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.462&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.462&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.461&r2=1.462

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.461
retrieving revision 1.462
diff -u -r1.461 -r1.462
--- ChangeLog	23 Oct 2012 20:58:05 -0000	1.461
+++ ChangeLog	23 Oct 2012 21:09:39 -0000	1.462
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.461 2012/10/23 20:58:05 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.462 2012/10/23 21:09:39 mgorny Exp $
+
+  23 Oct 2012; Michał Górny <mgorny@gentoo.org> eutils.eclass:
+  prune_libtool_files(): fix variable reuse. Thanks to radhermit for the patch.
 
   23 Oct 2012; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass,
   python-r1.eclass:



1.409                eclass/eutils.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?rev=1.409&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?rev=1.409&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?r1=1.408&r2=1.409

Index: eutils.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v
retrieving revision 1.408
retrieving revision 1.409
diff -u -r1.408 -r1.409
--- eutils.eclass	11 Oct 2012 16:52:05 -0000	1.408
+++ eutils.eclass	23 Oct 2012 21:09:39 -0000	1.409
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.408 2012/10/11 16:52:05 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.409 2012/10/23 21:09:39 mgorny Exp $
 
 # @ECLASS: eutils.eclass
 # @MAINTAINER:
@@ -1462,14 +1462,14 @@
 				# Create a list of all .pc-covered libs.
 				local pc_libs=()
 				if [[ ! ${removing_all} ]]; then
-					local f
+					local pc
 					local tf=${T}/prune-lt-files.pc
 					local pkgconf=$(tc-getPKG_CONFIG)
 
-					while IFS= read -r -d '' f; do # for all .pc files
+					while IFS= read -r -d '' pc; do # for all .pc files
 						local arg
 
-						sed -e '/^Requires:/d' "${f}" > "${tf}"
+						sed -e '/^Requires:/d' "${pc}" > "${tf}"
 						for arg in $("${pkgconf}" --libs "${tf}"); do
 							[[ ${arg} == -l* ]] && pc_libs+=( lib${arg#-l}.la )
 						done





             reply	other threads:[~2012-10-23 21:09 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-23 21:09 Michal Gorny (mgorny) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-01-14 22:50 [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog eutils.eclass Michal Gorny (mgorny)
2014-12-30  7:24 William Hubbs (williamh)
2013-12-28 17:19 Michal Gorny (mgorny)
2013-12-27  9:28 Michal Gorny (mgorny)
2013-09-14 19:00 Michal Gorny (mgorny)
2013-09-13 11:22 Michal Gorny (mgorny)
2013-05-22  5:10 Michal Gorny (mgorny)
2013-05-21 14:05 Michal Gorny (mgorny)
2013-05-15 19:01 Michal Gorny (mgorny)
2013-03-09 18:18 Michal Gorny (mgorny)
2013-03-09 17:55 Michal Gorny (mgorny)
2013-02-26 14:36 Michal Gorny (mgorny)
2013-02-10 11:42 Michal Gorny (mgorny)
2012-10-11 16:52 Michal Gorny (mgorny)
2012-10-11 16:50 Michal Gorny (mgorny)
2012-09-27 17:12 Ian Stakenvicius (axs)
2012-08-29 13:42 Michal Gorny (mgorny)
2012-06-20  9:26 Michal Gorny (mgorny)
2012-06-14 23:07 Julian Ospald (hasufell)
2012-06-06 15:37 Michal Gorny (mgorny)
2012-06-05 17:40 Julian Ospald (hasufell)
2012-05-28 16:45 PaweA Hajdan (phajdan.jr)
2012-04-02 22:13 Pacho Ramos (pacho)
2012-03-01 22:10 Naohiro Aota (naota)
2012-02-26 13:20 Pacho Ramos (pacho)
2011-12-17  3:57 Maciej Mrozowski (reavertm)
2011-12-02 10:22 Brian Harring (ferringb)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20121023210939.B408B21600@flycatcher.gentoo.org \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox