From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5E45A139085 for ; Sun, 5 Feb 2017 11:08:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8F4C21C028; Sun, 5 Feb 2017 11:07:21 +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 A29AB21C028 for ; Sun, 5 Feb 2017 11:07:21 +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 8C623341398 for ; Sun, 5 Feb 2017 11:07:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1B323B8E for ; Sun, 5 Feb 2017 11:07:18 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1486292788.488e314d5c0a619ab9fa0ebc01de89bd77ed17a6.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/mpg123-el/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/mpg123-el/mpg123-el-1.60.ebuild X-VCS-Directories: app-emacs/mpg123-el/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 488e314d5c0a619ab9fa0ebc01de89bd77ed17a6 X-VCS-Branch: master Date: Sun, 5 Feb 2017 11:07:18 +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: fb863a2b-2ff1-45a4-a706-6d4854328dc5 X-Archives-Hash: 4f1007d5a1d8b7346d227e6ce2ac6af7 commit: 488e314d5c0a619ab9fa0ebc01de89bd77ed17a6 Author: Ulrich Müller gentoo org> AuthorDate: Sun Feb 5 11:06:28 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Feb 5 11:06:28 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=488e314d app-emacs/mpg123-el: Honour CPPFLAGS too. Thanks to David Seifert for pointing this out. Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-emacs/mpg123-el/mpg123-el-1.60.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emacs/mpg123-el/mpg123-el-1.60.ebuild b/app-emacs/mpg123-el/mpg123-el-1.60.ebuild index 8514362..c63dc5c 100644 --- a/app-emacs/mpg123-el/mpg123-el-1.60.ebuild +++ b/app-emacs/mpg123-el/mpg123-el-1.60.ebuild @@ -20,8 +20,8 @@ RDEPEND="media-sound/mpg123 SITEFILE="50${PN}-gentoo.el" src_compile() { - $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o tagput tagput.c || die - $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o id3put id3put.c || die + $(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o tagput tagput.c || die + $(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o id3put id3put.c || die elisp-compile *.el }