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 2814258973 for ; Mon, 18 Jan 2016 07:37:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC57F21C055; Mon, 18 Jan 2016 07:37:28 +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 6FAFD21C055 for ; Mon, 18 Jan 2016 07:37:28 +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 7B5B93408EC for ; Mon, 18 Jan 2016 07:37:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06E6BCB3 for ; Mon, 18 Jan 2016 07:37:25 +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: <1453102626.f8aa9aee095d9fe8965e6b7bf0e6f646f1caf807.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/cmake-utils.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: f8aa9aee095d9fe8965e6b7bf0e6f646f1caf807 X-VCS-Branch: master Date: Mon, 18 Jan 2016 07:37:25 +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: bedbb52c-e67e-4eba-b832-60a1a2b94b2c X-Archives-Hash: faaa839af03541534f3c691bb583d2bc commit: f8aa9aee095d9fe8965e6b7bf0e6f646f1caf807 Author: Michael Palimaka gentoo org> AuthorDate: Mon Jan 18 07:37:06 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Jan 18 07:37:06 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f8aa9aee cmake-utils.eclass: fix function call eclass/cmake-utils.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 63ab8e6..9e8e71e 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -724,7 +724,7 @@ cmake-utils_src_make() { _cmake_check_build_dir pushd "${BUILD_DIR}" > /dev/null || die - ${CMAKE_MAKEFILE_GENERATOR}_src_make "$@" + _cmake_${CMAKE_MAKEFILE_GENERATOR}_src_make "$@" popd > /dev/null || die }