diff options
author | Kevin McCarthy <signals@gentoo.org> | 2011-04-15 20:11:55 +0000 |
---|---|---|
committer | Kevin McCarthy <signals@gentoo.org> | 2011-04-15 20:11:55 +0000 |
commit | 307aa5d46a5592b08e727290123ad3a49eed2465 (patch) | |
tree | bbbbd16a9c0813a547e9b27dccedbfbb0ade6c9a /x11-misc/wbar | |
parent | Denote that EXTRA_ESCONS is not supposed to be set in ebuilds. (diff) | |
download | gentoo-2-307aa5d46a5592b08e727290123ad3a49eed2465.tar.gz gentoo-2-307aa5d46a5592b08e727290123ad3a49eed2465.tar.bz2 gentoo-2-307aa5d46a5592b08e727290123ad3a49eed2465.zip |
Removed -Werror from CFLAGS.
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/wbar')
-rw-r--r-- | x11-misc/wbar/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/wbar/wbar-2.1.1.ebuild | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/x11-misc/wbar/ChangeLog b/x11-misc/wbar/ChangeLog index 03a9610943ec..0b24b554a80a 100644 --- a/x11-misc/wbar/ChangeLog +++ b/x11-misc/wbar/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/wbar # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.8 2011/03/14 21:18:10 signals Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.9 2011/04/15 20:11:55 signals Exp $ + + 15 Apr 2011; Kevin McCarthy <signals@gentoo.org> wbar-2.1.1.ebuild: + Removed -Werror from CFLAGS. 14 Mar 2011; Kevin McCarthy <signals@gentoo.org> wbar-2.1.1.ebuild, files/wbar-2.1.1-as-needed.patch: diff --git a/x11-misc/wbar/wbar-2.1.1.ebuild b/x11-misc/wbar/wbar-2.1.1.ebuild index dfff9622dc84..40f2e27dee5d 100644 --- a/x11-misc/wbar/wbar-2.1.1.ebuild +++ b/x11-misc/wbar/wbar-2.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.1.1.ebuild,v 1.3 2011/03/14 21:18:10 signals Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.1.1.ebuild,v 1.4 2011/04/15 20:11:55 signals Exp $ EAPI=4 inherit autotools eutils @@ -43,6 +43,7 @@ src_prepare() { etc/wbar.cfg.in || die "Removing wbar-config from cfg" fi sed -i configure.ac -e "/^CPPFLAGS/d" || die #respect flags + sed -i configure.ac -e "s/-Werror//" || die #Don't -Werror eautoreconf # Fix build issue reported by xarthisius mv "${S}"/src/config/Main.cc "${S}"/src/config/Main-config.cc || die |