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 B515A13838B for ; Fri, 26 Sep 2014 16:03:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59544E0833; Fri, 26 Sep 2014 16:03:13 +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 14C11E0833 for ; Fri, 26 Sep 2014 16:03:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3A98D3401A5 for ; Fri, 26 Sep 2014 16:03:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A8BB6565 for ; Fri, 26 Sep 2014 16:03:10 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1411747263.1ddceba6207e11eb2e90931a74705c124327cf8e.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: Documentation/maintainers/ X-VCS-Repository: proj/kde X-VCS-Files: Documentation/maintainers/bump-from-set.sh X-VCS-Directories: Documentation/maintainers/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 1ddceba6207e11eb2e90931a74705c124327cf8e X-VCS-Branch: master Date: Fri, 26 Sep 2014 16:03:10 +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: 11353680-e802-4bbc-be86-9bae30bf8e62 X-Archives-Hash: f6f97fbf3c0461d297a07ea8c08260af commit: 1ddceba6207e11eb2e90931a74705c124327cf8e Author: Michael Palimaka gentoo org> AuthorDate: Fri Sep 26 16:00:52 2014 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Fri Sep 26 16:01:03 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1ddceba6 [Documentation/maintainers] Fix iterating over lines with whitespace. By default, for will iterate over various types of whitespace, so explicitly define that we want newlines. --- Documentation/maintainers/bump-from-set.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/maintainers/bump-from-set.sh b/Documentation/maintainers/bump-from-set.sh index 741f199..8758a5c 100755 --- a/Documentation/maintainers/bump-from-set.sh +++ b/Documentation/maintainers/bump-from-set.sh @@ -9,6 +9,7 @@ get_package_list_from_set() { local SET="${1}" + IFS=$'\n' for entry in $(cat "${PORTDIR}/sets/${SET}") ; do if [[ ${entry} == \#* || ${entry} == @* ]] ; then continue