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 EC4C9138206 for ; Sun, 24 Apr 2016 07:07:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C41FE081C; Sun, 24 Apr 2016 07:07:53 +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 E1053E081C for ; Sun, 24 Apr 2016 07:07:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B6241340988 for ; Sun, 24 Apr 2016 07:07:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 839C095D for ; Sun, 24 Apr 2016 07:07:48 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1461481613.2dc399cee52a1d4a17dc46b988f5e8d0d7d6dd7d.polynomial-c@gentoo> Subject: [gentoo-commits] proj/kde-sunset:master commit in: eclass/ X-VCS-Repository: proj/kde-sunset X-VCS-Files: eclass/kde.eclass X-VCS-Directories: eclass/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 2dc399cee52a1d4a17dc46b988f5e8d0d7d6dd7d X-VCS-Branch: master Date: Sun, 24 Apr 2016 07:07:48 +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: 852733e0-e080-490a-bf1a-3f7a86574db3 X-Archives-Hash: 3e5923f6d4ac445884802bfaf171bc49 commit: 2dc399cee52a1d4a17dc46b988f5e8d0d7d6dd7d Author: Lars Wendler gentoo org> AuthorDate: Sun Apr 24 07:06:53 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sun Apr 24 07:06:53 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=2dc399ce eclass/kde.eclass: Fixed build with latest autoconf-archive. Signed-off-by: Lars Wendler gentoo.org> eclass/kde.eclass | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/eclass/kde.eclass b/eclass/kde.eclass index d156766..d57d047 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -235,6 +235,13 @@ kde_src_prepare() { ln -s "${WORKDIR}/admin" "${KDE_S}/admin" || die "Unable to symlink the new admin/ directory" eend 0 fi + + # >=autoconf-archive-2016.03.20 tries to include + # ax_cxx_compile_stdcxx.m4 which these old kde packages seek in ${S}. + # Create a symlink so we don't break the build. + if [[ -f "/usr/share/aclocal/ax_cxx_compile_stdcxx.m4" ]] ; then + ln -s /usr/share/aclocal/ax_cxx_compile_stdcxx.m4 "${S}" || die + fi } # @FUNCTION: kde_src_configure