diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2007-07-16 15:06:06 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2007-07-16 15:06:06 +0000 |
commit | 874ec634667431a6abb92fdb26aa918458e061e0 (patch) | |
tree | 59ab033f4b66606aa63d873e73daa20e993f4fc7 /eclass | |
parent | sparc stable (diff) | |
download | historical-874ec634667431a6abb92fdb26aa918458e061e0.tar.gz historical-874ec634667431a6abb92fdb26aa918458e061e0.tar.bz2 historical-874ec634667431a6abb92fdb26aa918458e061e0.zip |
it's version_compare, oops
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/nvidia-driver.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/nvidia-driver.eclass b/eclass/nvidia-driver.eclass index c4a38701c844..cbb0ad76eb2f 100644 --- a/eclass/nvidia-driver.eclass +++ b/eclass/nvidia-driver.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/nvidia-driver.eclass,v 1.4 2007/07/16 15:01:05 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/nvidia-driver.eclass,v 1.5 2007/07/16 15:06:06 cardoe Exp $ # # Original Author: Doug Goldstein <cardoe@gentoo.org> @@ -65,7 +65,7 @@ nvidia-driver-get-mask() { nvidia-driver-check-warning() { local NVIDIA_MASK="$(nvidia-driver-get-mask)" if [ -n "$NVIDIA_MASK" ]; then - version-compare "${NVIDIA_MASK##-*}" "${PV}" + version_compare "${NVIDIA_MASK##-*}" "${PV}" r=$? if [ "x$r" = "x1" ]; then |