Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/mpg123-el/
Date: Sun, 05 Feb 2017 11:08:07
Message-Id: 1486292788.488e314d5c0a619ab9fa0ebc01de89bd77ed17a6.ulm@gentoo
1 commit: 488e314d5c0a619ab9fa0ebc01de89bd77ed17a6
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 5 11:06:28 2017 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 5 11:06:28 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=488e314d
7
8 app-emacs/mpg123-el: Honour CPPFLAGS too.
9
10 Thanks to David Seifert for pointing this out.
11
12 Package-Manager: Portage-2.3.3, Repoman-2.3.1
13
14 app-emacs/mpg123-el/mpg123-el-1.60.ebuild | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/app-emacs/mpg123-el/mpg123-el-1.60.ebuild b/app-emacs/mpg123-el/mpg123-el-1.60.ebuild
18 index 8514362..c63dc5c 100644
19 --- a/app-emacs/mpg123-el/mpg123-el-1.60.ebuild
20 +++ b/app-emacs/mpg123-el/mpg123-el-1.60.ebuild
21 @@ -20,8 +20,8 @@ RDEPEND="media-sound/mpg123
22 SITEFILE="50${PN}-gentoo.el"
23
24 src_compile() {
25 - $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o tagput tagput.c || die
26 - $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o id3put id3put.c || die
27 + $(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o tagput tagput.c || die
28 + $(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o id3put id3put.c || die
29 elisp-compile *.el
30 }