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 F01B758973 for ; Sat, 30 Jan 2016 08:16:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DFFD021C002; Sat, 30 Jan 2016 08:16:25 +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 8846D21C002 for ; Sat, 30 Jan 2016 08:16:25 +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 57158340906 for ; Sat, 30 Jan 2016 08:16:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 430798E7 for ; Sat, 30 Jan 2016 08:16:22 +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: <1454141772.76af0a40a82f321337bcbc4699f3f11c27a4619c.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/graphite2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/graphite2/graphite2-1.2.1.ebuild media-gfx/graphite2/graphite2-1.2.4-r1.ebuild media-gfx/graphite2/graphite2-1.2.4.ebuild X-VCS-Directories: media-gfx/graphite2/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 76af0a40a82f321337bcbc4699f3f11c27a4619c X-VCS-Branch: master Date: Sat, 30 Jan 2016 08:16: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: 17ce296c-5396-420d-a86f-65f82204bb30 X-Archives-Hash: 43697e4e578311d03083c916512db57f commit: 76af0a40a82f321337bcbc4699f3f11c27a4619c Author: Michael Palimaka gentoo org> AuthorDate: Sat Jan 30 08:16:00 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Jan 30 08:16:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76af0a40 media-gfx/graphite2: fix function call The function was renamed in e4b034ec87ff80561b18d52ee07df66b04a50cab but usage was never checked for because it is supposed to be a private function. Gentoo-bug: 573362 Package-Manager: portage-2.2.27 media-gfx/graphite2/graphite2-1.2.1.ebuild | 2 +- media-gfx/graphite2/graphite2-1.2.4-r1.ebuild | 2 +- media-gfx/graphite2/graphite2-1.2.4.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/media-gfx/graphite2/graphite2-1.2.1.ebuild b/media-gfx/graphite2/graphite2-1.2.1.ebuild index 0cb3b12..b9f54cb 100644 --- a/media-gfx/graphite2/graphite2-1.2.1.ebuild +++ b/media-gfx/graphite2/graphite2-1.2.1.ebuild @@ -48,7 +48,7 @@ src_prepare() { # fix perl linking if use perl; then - _check_build_dir init + _cmake_check_build_dir init sed -i \ -e "s:@BUILD_DIR@:\"${CMAKE_BUILD_DIR}/src\":" \ contrib/perl/Build.PL || die diff --git a/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild b/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild index 42b25cf..6a40a4c 100644 --- a/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild +++ b/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild @@ -69,7 +69,7 @@ multilib_src_configure() { # fix perl linking if multilib_is_native_abi && use perl; then - _check_build_dir init + _cmake_check_build_dir init sed -i \ -e "s:@BUILD_DIR@:\"${BUILD_DIR}/src\":" \ "${S}"/contrib/perl/Build.PL || die diff --git a/media-gfx/graphite2/graphite2-1.2.4.ebuild b/media-gfx/graphite2/graphite2-1.2.4.ebuild index 4d5525c..067c996 100644 --- a/media-gfx/graphite2/graphite2-1.2.4.ebuild +++ b/media-gfx/graphite2/graphite2-1.2.4.ebuild @@ -48,7 +48,7 @@ src_prepare() { # fix perl linking if use perl; then - _check_build_dir init + _cmake_check_build_dir init sed -i \ -e "s:@BUILD_DIR@:\"${CMAKE_BUILD_DIR}/src\":" \ contrib/perl/Build.PL || die