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 080F11381F3 for ; Mon, 22 Jul 2013 06:09:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0184E09D5; Mon, 22 Jul 2013 06:09:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 351F9E09DB for ; Mon, 22 Jul 2013 06:09:25 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DAD0F33E753 for ; Mon, 22 Jul 2013 06:09:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 85398E545F for ; Mon, 22 Jul 2013 06:09:22 +0000 (UTC) From: "Sven Eden" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Eden" Message-ID: <1374472274.4d1818f095f4b0039b484aa12f11aa1b78f8531a.yamakuzure@gentoo> Subject: [gentoo-commits] proj/ufed:master commit in: / X-VCS-Repository: proj/ufed X-VCS-Files: Portage.pm X-VCS-Directories: / X-VCS-Committer: yamakuzure X-VCS-Committer-Name: Sven Eden X-VCS-Revision: 4d1818f095f4b0039b484aa12f11aa1b78f8531a X-VCS-Branch: master Date: Mon, 22 Jul 2013 06:09:22 +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: 2de27235-5e6a-41e1-860a-01a79c007b73 X-Archives-Hash: 4a3876ef591aea85bd31923254590c90 commit: 4d1818f095f4b0039b484aa12f11aa1b78f8531a Author: Sven Eden gmx net> AuthorDate: Mon Jul 22 05:51:14 2013 +0000 Commit: Sven Eden gmx de> CommitDate: Mon Jul 22 05:51:14 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=4d1818f0 Changed file search in make.conf directory parsing to be case insensitive. --- Portage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Portage.pm b/Portage.pm index a254695..8d37c38 100644 --- a/Portage.pm +++ b/Portage.pm @@ -654,7 +654,7 @@ sub _read_make_conf { for my $confPath ($stOldPath, $stNewPath) { if ( -d $confPath) { - for my $confFile (sort glob("$confPath/*")) { + for my $confFile (sort {lc($a) cmp lc($b)} glob("$confPath/*")) { # Skip backup and temporary files $confFile =~ /(?:\.bak|~|\.old|\.tmp)$/ and next;