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 E51CB59CA3 for ; Sun, 13 Mar 2016 16:47:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4760A21C021; Sun, 13 Mar 2016 16:47:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A70C521C022 for ; Sun, 13 Mar 2016 16:47:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9098B340BD1 for ; Sun, 13 Mar 2016 16:47:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C6C384C for ; Sun, 13 Mar 2016 16:47:05 +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: <1457872508.37d930efe8f43e4b6f5bbe9d51677f3d530a19f6.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde5.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 37d930efe8f43e4b6f5bbe9d51677f3d530a19f6 X-VCS-Branch: master Date: Sun, 13 Mar 2016 16:47:05 +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: c25b4d5a-3163-4c1c-830d-b1fa49693c54 X-Archives-Hash: dbf34801af7ca80fd616e0792f818a95 commit: 37d930efe8f43e4b6f5bbe9d51677f3d530a19f6 Author: Andreas Sturmlechner gmail com> AuthorDate: Sat Mar 12 20:16:29 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Mar 13 12:35:08 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=37d930ef kde5.eclass: Don't remove CMakeLists.txt in po directory eclass/kde5.eclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 8f6ff37..6b737fe 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -471,7 +471,9 @@ kde5_src_prepare() { cmake_comment_add_subdirectory ${lang} fi elif ! has ${lang/.po/} ${LINGUAS} ; then - rm ${lang} || die + if [[ ${lang} != CMakeLists.txt ]] ; then + rm ${lang} || die + fi fi done popd > /dev/null || die