diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-06-11 09:25:45 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-06-11 09:25:45 +0000 |
commit | b4e7dfdc3d7013197e83f53af8d1f07179398640 (patch) | |
tree | 0279c2ec557acc5c0ead84f8f61afbef90e7603b | |
parent | deps handled by updated mupdf pkg-config files (diff) | |
download | gentoo-2-b4e7dfdc3d7013197e83f53af8d1f07179398640.tar.gz gentoo-2-b4e7dfdc3d7013197e83f53af8d1f07179398640.tar.bz2 gentoo-2-b4e7dfdc3d7013197e83f53af8d1f07179398640.zip |
Remove old VIMRUNTIME warning.
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/vim.eclass | 11 |
2 files changed, 5 insertions, 11 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index be79ffe3788c..69e2147f5046 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.854 2013/06/09 20:41:50 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.855 2013/06/11 09:25:45 radhermit Exp $ + + 11 Jun 2013; Tim Harder <radhermit@gentoo.org> vim.eclass: + Remove old VIMRUNTIME warning. 09 Jun 2013; Tim Harder <radhermit@gentoo.org> vim.eclass: Replace backticks with $(...). diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 31547e578aa7..77451d0b6e21 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.219 2013/06/09 20:41:50 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.220 2013/06/11 09:25:45 radhermit Exp $ # Authors: # Jim Ramsay <lack@gentoo.org> @@ -694,15 +694,6 @@ vim_pkg_postinst() { elog "To see what's new in this release, use :help version${VIM_VERSION/.*/}.txt" fi - # Warn about VIMRUNTIME - if [ -n "$VIMRUNTIME" -a "${VIMRUNTIME##*/vim}" != "${VIM_VERSION/./}" ] ; then - echo - ewarn "WARNING: You have VIMRUNTIME set in your environment from an old" - ewarn "installation. You will need to either unset VIMRUNTIME in each" - ewarn "terminal, or log out completely and back in. This problem won't" - ewarn "happen again since the ebuild no longer sets VIMRUNTIME." - fi - # Make convenience symlinks if [[ ${PN} != "vim-core" ]] ; then # But only for vim/gvim, bug #252724 |