diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-06-09 20:41:50 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-06-09 20:41:50 +0000 |
commit | 46ed03604b1dd4392b3b18cc64003f5409d97619 (patch) | |
tree | e8819b0edcbe20aba9d9e5214a668ce2032d054f /eclass | |
parent | Ditto for live ebuild. (diff) | |
download | gentoo-2-46ed03604b1dd4392b3b18cc64003f5409d97619.tar.gz gentoo-2-46ed03604b1dd4392b3b18cc64003f5409d97619.tar.bz2 gentoo-2-46ed03604b1dd4392b3b18cc64003f5409d97619.zip |
Replace backticks with $(...).
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/vim.eclass | 20 |
2 files changed, 14 insertions, 11 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 68e4f6b15abc..be79ffe3788c 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.853 2013/06/09 20:33:19 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.854 2013/06/09 20:41:50 radhermit Exp $ + + 09 Jun 2013; Tim Harder <radhermit@gentoo.org> vim.eclass: + Replace backticks with $(...). 09 Jun 2013; Tim Harder <radhermit@gentoo.org> vim.eclass: Remove old runtime and netrw snapshot unpacking support. diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 19f9eb3b0e09..31547e578aa7 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.218 2013/06/09 20:33:19 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.219 2013/06/09 20:41:50 radhermit Exp $ # Authors: # Jim Ramsay <lack@gentoo.org> @@ -396,9 +396,9 @@ vim_src_configure() { myconf="--with-features=huge \ --enable-multibyte" - myconf="${myconf} `use_enable cscope`" - myconf="${myconf} `use_enable gpm`" - myconf="${myconf} `use_enable perl perlinterp`" + myconf="${myconf} $(use_enable cscope)" + myconf="${myconf} $(use_enable gpm)" + myconf="${myconf} $(use_enable perl perlinterp)" if [[ ${HAS_PYTHON_R1} ]]; then if use python; then if [[ ${EPYTHON} == python3* ]]; then @@ -412,16 +412,16 @@ vim_src_configure() { myconf="${myconf} --disable-pythoninterp --disable-python3interp" fi else - myconf="${myconf} `use_enable python pythoninterp`" + myconf="${myconf} $(use_enable python pythoninterp)" fi - myconf="${myconf} `use_enable ruby rubyinterp`" + myconf="${myconf} $(use_enable ruby rubyinterp)" # tclinterp is broken; when you --enable-tclinterp flag, then # the following command never returns: # VIMINIT='let OS=system("uname -s")' vim # mzscheme support is currently broken. bug #91970 - #myconf="${myconf} `use_enable mzscheme mzschemeinterp`" + #myconf="${myconf} $(use_enable mzscheme mzschemeinterp)" if [[ ${PN} == gvim ]] ; then - myconf="${myconf} `use_enable netbeans`" + myconf="${myconf} $(use_enable netbeans)" fi # --with-features=huge forces on cscope even if we --disable it. We need @@ -434,7 +434,7 @@ vim_src_configure() { if [[ ${PN} == vim ]] ; then # don't test USE=X here ... see bug #19115 # but need to provide a way to link against X ... see bug #20093 - myconf="${myconf} --enable-gui=no --disable-darwin `use_with X x`" + myconf="${myconf} --enable-gui=no --disable-darwin $(use_with X x)" elif [[ ${PN} == gvim ]] ; then myconf="${myconf} --with-vim-name=gvim --with-x" @@ -472,7 +472,7 @@ vim_src_configure() { if [[ ${PN} == vim ]] && use minimal ; then myconf="${myconf} --disable-nls --disable-multibyte --disable-acl" else - myconf="${myconf} `use_enable nls` `use_enable acl`" + myconf="${myconf} $(use_enable nls) $(use_enable acl)" fi myconf="${myconf} --disable-selinux" |