diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-19 09:11:19 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-19 09:11:19 +0000 |
commit | a6468b61bf8aaf5cbf4492a4a753a12ab7348ac8 (patch) | |
tree | baa4f0fab807d089e9355c2d69aebf4032f46284 /xfce-extra | |
parent | version bump (diff) | |
download | gentoo-2-a6468b61bf8aaf5cbf4492a4a753a12ab7348ac8.tar.gz gentoo-2-a6468b61bf8aaf5cbf4492a4a753a12ab7348ac8.tar.bz2 gentoo-2-a6468b61bf8aaf5cbf4492a4a753a12ab7348ac8.zip |
Don't use -Werror wrt #299438, thanks to Alexander Goomenyuk for reporting.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'xfce-extra')
-rw-r--r-- | xfce-extra/xfce4-sensors-plugin/ChangeLog | 9 | ||||
-rw-r--r-- | xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild | 13 |
2 files changed, 17 insertions, 5 deletions
diff --git a/xfce-extra/xfce4-sensors-plugin/ChangeLog b/xfce-extra/xfce4-sensors-plugin/ChangeLog index 8cbc0108f998..e5579f0ad355 100644 --- a/xfce-extra/xfce4-sensors-plugin/ChangeLog +++ b/xfce-extra/xfce4-sensors-plugin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for xfce-extra/xfce4-sensors-plugin -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog,v 1.1 2009/08/23 20:19:17 ssuominen Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog,v 1.2 2010/02/19 09:11:19 ssuominen Exp $ + + 19 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> + xfce4-sensors-plugin-0.10.99.6.ebuild: + Don't use -Werror wrt #299438, thanks to Alexander Goomenyuk for + reporting. *xfce4-sensors-plugin-0.10.99.6 (23 Aug 2009) diff --git a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild index e0d1aa8f9ec5..0aa3b799fac0 100644 --- a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild +++ b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild,v 1.1 2009/08/23 20:19:17 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild,v 1.2 2010/02/19 09:11:19 ssuominen Exp $ EAUTORECONF=yes EAPI=2 @@ -43,6 +43,13 @@ pkg_setup() { } src_prepare() { - sed -i -e "/-no-undefined/d" src/Makefile.am || die "sed failed" + sed -i \ + -e '/-no-undefined/d' \ + src/Makefile.am || die + + sed -i \ + -e 's/-Werror//' \ + configure.in || die + xfconf_src_prepare } |