diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-12-07 22:15:01 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-12-07 22:15:01 +0000 |
commit | c8bb29ec37ecd95e537c61f20f03a1bb7a18ec15 (patch) | |
tree | 0d35e63ed4790058ab979d88bb33bfbbeee9aa95 /eclass | |
parent | Prevent packages that bork with hardened gccs from building. Based on Starlin... (diff) | |
download | gentoo-2-c8bb29ec37ecd95e537c61f20f03a1bb7a18ec15.tar.gz gentoo-2-c8bb29ec37ecd95e537c61f20f03a1bb7a18ec15.tar.bz2 gentoo-2-c8bb29ec37ecd95e537c61f20f03a1bb7a18ec15.zip |
don't try to build an empty target, bug #114799
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vim.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 51111c1311e6..5098c23f4cf0 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.133 2005/12/07 18:50:02 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.134 2005/12/07 22:15:01 ciaranm Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -507,7 +507,7 @@ vim_src_compile() { our_makeopts="" fi - if ! emake "${our_makeopts}" ; then + if ! emake ${our_makeopts} ; then eerror "If the above messages seem to be talking about perl" eerror "and undefined references, please try re-emerging both" eerror "perl and libperl with the same USE flags. For more" |