diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2011-12-19 01:29:57 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2011-12-19 01:29:57 +0000 |
commit | 90cad628d2a205a1616d25bd794d39f5d8d732e2 (patch) | |
tree | f571aa30b7ff9579736c01a7d3403a45042b7bb8 /eclass | |
parent | fixing Manifest signature (diff) | |
download | historical-90cad628d2a205a1616d25bd794d39f5d8d732e2.tar.gz historical-90cad628d2a205a1616d25bd794d39f5d8d732e2.tar.bz2 historical-90cad628d2a205a1616d25bd794d39f5d8d732e2.zip |
Fix missing quotes on has_verison call.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/python.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass index 0c0707aaac9e..7cd241f09964 100644 --- a/eclass/python.eclass +++ b/eclass/python.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/python.eclass,v 1.142 2011/12/18 23:38:11 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.143 2011/12/19 01:29:57 robbat2 Exp $ # @ECLASS: python.eclass # @MAINTAINER: @@ -1596,7 +1596,7 @@ for file in sorted(files_set): # the 3-way structure per comment #6. This enable users with old # coreutils to upgrade a lot easier (you need to upgrade python+portage # before coreutils can be upgraded). - if ROOT="/" has_version >=sys-apps/coreutils-6.9.90; then + if ROOT="/" has_version '>=sys-apps/coreutils-6.9.90'; then cp -fr --preserve=all --no-preserve=context "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" elif ROOT="/" has_version sys-apps/coreutils; then cp -fr --preserve=all "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |