diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-04-25 08:58:59 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-04-25 08:58:59 +0000 |
commit | f52c6b380694c3b93b18feee95e08c9f0a76a877 (patch) | |
tree | 0a9dc6a9a369ddbdd9df001262c15199a069e6e8 /xfce-extra/xfce4-sensors-plugin | |
parent | Fix building with automake-1.13. #466958 (diff) | |
download | gentoo-2-f52c6b380694c3b93b18feee95e08c9f0a76a877.tar.gz gentoo-2-f52c6b380694c3b93b18feee95e08c9f0a76a877.tar.bz2 gentoo-2-f52c6b380694c3b93b18feee95e08c9f0a76a877.zip |
Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER for automake-1.13 compability.
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'xfce-extra/xfce4-sensors-plugin')
-rw-r--r-- | xfce-extra/xfce4-sensors-plugin/ChangeLog | 9 | ||||
-rw-r--r-- | xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.ebuild | 7 |
2 files changed, 12 insertions, 4 deletions
diff --git a/xfce-extra/xfce4-sensors-plugin/ChangeLog b/xfce-extra/xfce4-sensors-plugin/ChangeLog index b9fefba14570..9dcc50264d1f 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-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog,v 1.42 2012/11/28 12:24:14 ssuominen Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog,v 1.43 2013/04/25 08:58:59 ssuominen Exp $ + + 25 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> + xfce4-sensors-plugin-1.2.5.ebuild: + Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER for automake-1.13 + compability. 28 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> xfce4-sensors-plugin-1.2.5.ebuild: diff --git a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.ebuild b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.ebuild index ec01f8270d5b..bc5cd436d792 100644 --- a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.ebuild +++ b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.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/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.ebuild,v 1.5 2012/11/28 12:24:14 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.ebuild,v 1.6 2013/04/25 08:58:59 ssuominen Exp $ EAPI=5 EAUTORECONF=yes @@ -51,9 +51,12 @@ src_prepare() { # configure.in wrt #386979 # Remove AC_PROG_LIBTOOL because LT_INIT([disable-static]) is also present: # http://bugzilla.xfce.org/show_bug.cgi?id=8888 + # Use AC_CONFIG_HEADERS for automake-1.13 compability, see: + # http://bugzilla.xfce.org/show_bug.cgi?id=10031 sed -i \ -e '/PLATFORM_CFLAGS/s:-Werror::' \ -e '/AC_PROG_LIBTOOL/d' \ + -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \ configure.in || die xfconf_src_prepare |