diff options
author | Mike Gilbert <floppym@gentoo.org> | 2013-08-11 02:42:54 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2013-08-11 02:42:54 +0000 |
commit | 6337eb9068263da8e2ec27793971bb2e443358a4 (patch) | |
tree | 88f37d74599595d1208b57128863a438fe8d1c1d /eclass | |
parent | Bump (diff) | |
download | gentoo-2-6337eb9068263da8e2ec27793971bb2e443358a4.tar.gz gentoo-2-6337eb9068263da8e2ec27793971bb2e443358a4.tar.bz2 gentoo-2-6337eb9068263da8e2ec27793971bb2e443358a4.zip |
Don't call EXPORT_FUNCTONS if CHROMIUM_EXPORT_PHASES is set to 'no'.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/chromium.eclass | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 83b8fc0be45f..f0a366d75093 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.920 2013/08/10 07:41:19 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.921 2013/08/11 02:42:54 floppym Exp $ + + 11 Aug 2013; Mike Gilbert <floppym@gentoo.org> chromium.eclass: + Don't call EXPORT_FUNCTONS if CHROMIUM_EXPORT_PHASES is set to 'no'. 10 Aug 2013; Ryan Hill <dirtyepic@gentoo.org> toolchain.eclass: Clean up gcc_do_filter_flags a bit more. Drop ppc64 workaround for 3.2/3.3 diff --git a/eclass/chromium.eclass b/eclass/chromium.eclass index 1ef881963910..906968ae1abb 100644 --- a/eclass/chromium.eclass +++ b/eclass/chromium.eclass @@ -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/eclass/chromium.eclass,v 1.7 2012/09/11 08:15:08 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/chromium.eclass,v 1.8 2013/08/11 02:42:54 floppym Exp $ # @ECLASS: chromium.eclass # @MAINTAINER: @@ -11,7 +11,9 @@ inherit eutils fdo-mime gnome2-utils linux-info -EXPORT_FUNCTIONS pkg_preinst pkg_postinst pkg_postrm +if [[ ${CHROMIUM_EXPORT_PHASES} != no ]]; then + EXPORT_FUNCTIONS pkg_preinst pkg_postinst pkg_postrm +fi if [[ ${PN} == chromium ]]; then IUSE+=" custom-cflags" |