diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2006-06-30 23:15:32 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2006-06-30 23:15:32 +0000 |
commit | 96b0c2095da501f3d4ab37a0a3a436ca7b6a3339 (patch) | |
tree | d958091bbe979288e2230cd490b728c9236e48e6 /eclass/x-modular.eclass | |
parent | Stable on alpha wrt Bug #128688. (diff) | |
download | gentoo-2-96b0c2095da501f3d4ab37a0a3a436ca7b6a3339.tar.gz gentoo-2-96b0c2095da501f3d4ab37a0a3a436ca7b6a3339.tar.bz2 gentoo-2-96b0c2095da501f3d4ab37a0a3a436ca7b6a3339.zip |
Need to quote > symbol (Andrew Gaffney).
Diffstat (limited to 'eclass/x-modular.eclass')
-rw-r--r-- | eclass/x-modular.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass index 00b2ebced9bf..4b78fd2a8782 100644 --- a/eclass/x-modular.eclass +++ b/eclass/x-modular.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.66 2006/06/30 16:21:38 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.67 2006/06/30 23:15:32 spyderous Exp $ # # Author: Donnie Berkholz <spyderous@gentoo.org> # @@ -200,7 +200,7 @@ x-modular_server_supports_drivers_check() { # (#135873) Only certain servers will actually use or be capable of # building external drivers, including binary drivers. if [[ -n "${DRIVER}" ]]; then - if has_version >=x11-base/xorg-server-1.1; then + if has_version '>=x11-base/xorg-server-1.1'; then if ! built_with_use x11-base/xorg-server xorg; then eerror "x11-base/xorg-server is not built with support for external drivers." die "You must build x11-base/xorg-server with USE=xorg." |