diff options
author | 2011-12-03 20:43:21 +0000 | |
---|---|---|
committer | 2011-12-03 20:43:21 +0000 | |
commit | 7fae92e0d248a0034d4cb6e39b18c8fc2f20c159 (patch) | |
tree | 4488a90e123c1ca485bff2869c109fd55aa84b77 /eclass/elisp-common.eclass | |
parent | Disable fortify patches with older glibcs #362315 by Leonid Volnitsky. (diff) | |
download | gentoo-2-7fae92e0d248a0034d4cb6e39b18c8fc2f20c159.tar.gz gentoo-2-7fae92e0d248a0034d4cb6e39b18c8fc2f20c159.tar.bz2 gentoo-2-7fae92e0d248a0034d4cb6e39b18c8fc2f20c159.zip |
Use ebegin/eend instead of einfo.
Diffstat (limited to 'eclass/elisp-common.eclass')
-rw-r--r-- | eclass/elisp-common.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index 8b696b31f72d..aaf86f4e150d 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -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/eclass/elisp-common.eclass,v 1.77 2011/12/03 08:54:46 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.78 2011/12/03 20:43:21 ulm Exp $ # # @ECLASS: elisp-common.eclass # @MAINTAINER: @@ -329,7 +329,7 @@ elisp-site-regen() { return 1 fi - einfo "Regenerating site-gentoo.el for GNU Emacs (${EBUILD_PHASE}) ..." + ebegin "Regenerating site-gentoo.el for GNU Emacs (${EBUILD_PHASE})" # Until January 2009, elisp-common.eclass sometimes created an # auxiliary file for backwards compatibility. Remove any such file. @@ -376,9 +376,11 @@ elisp-site-regen() { # was actually no change. # A case is a remerge where we have doubled output. rm -f "${T}"/site-gentoo.el + eend einfo "... no changes." else mv "${T}"/site-gentoo.el "${sitelisp}"/site-gentoo.el + eend case ${#sflist[@]} in 0) ewarn "... Huh? No site initialisation files found." ;; 1) einfo "... ${#sflist[@]} site initialisation file included." ;; |