diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-01-05 21:35:40 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-01-05 21:35:40 +0000 |
commit | e4d1674631f6c555e71664dc455893642aa4a784 (patch) | |
tree | df57f970452abc5ec300f89c0beaae24db647462 /app-shells | |
parent | Drop proxy maintainers team from metadata, wrt bug #390951 (diff) | |
download | gentoo-2-e4d1674631f6c555e71664dc455893642aa4a784.tar.gz gentoo-2-e4d1674631f6c555e71664dc455893642aa4a784.tar.bz2 gentoo-2-e4d1674631f6c555e71664dc455893642aa4a784.zip |
Respect CFLAGS, wrt bug #450458. Thanks to Diego Elio Pettenò for discovering this issue
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/rssh/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/rssh/rssh-2.3.4.ebuild | 6 |
2 files changed, 10 insertions, 4 deletions
diff --git a/app-shells/rssh/ChangeLog b/app-shells/rssh/ChangeLog index 52aa66b31bd2..918ac9db3855 100644 --- a/app-shells/rssh/ChangeLog +++ b/app-shells/rssh/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-shells/rssh -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.34 2012/12/03 11:17:55 nativemad Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.35 2013/01/05 21:35:40 pinkbyte Exp $ + + 05 Jan 2013; Sergey Popov <pinkbyte@gentoo.org> rssh-2.3.4.ebuild: + Respect CFLAGS, wrt bug #450458. Thanks to Diego Elio Pettenò for + discovering this issue 03 Dec 2012; Andreas Schuerch <nativemad@gentoo.org> rssh-2.3.4.ebuild: x86 stable, see bug 445166. Thanks Dan Dexter for testing. diff --git a/app-shells/rssh/rssh-2.3.4.ebuild b/app-shells/rssh/rssh-2.3.4.ebuild index 98e55e8eb7ce..2ff24a1d6fe5 100644 --- a/app-shells/rssh/rssh-2.3.4.ebuild +++ b/app-shells/rssh/rssh-2.3.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.3.4.ebuild,v 1.4 2012/12/03 11:17:55 nativemad Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.3.4.ebuild,v 1.5 2013/01/05 21:35:40 pinkbyte Exp $ EAPI=4 inherit eutils multilib @@ -18,6 +18,8 @@ RDEPEND="virtual/ssh" src_prepare() { sed -i 's:chmod u+s $(:chmod u+s $(DESTDIR)$(:' Makefile.in || die + # respect CFLAGS, bug #450458 + sed -i -e '/$(CC) -c/s/$(CPPFLAGS)/$(CFLAGS)/' Makefile.in || die } src_configure() { |