changeset 6962:843f0d0baace octave-forge

more accurate blksparse version check
author highegg
date Thu, 01 Apr 2010 06:43:05 +0000
parents 388f4e4d2bb9
children ce2b400ee347
files main/linear-algebra/inst/@blksparse/blksparse.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/main/linear-algebra/inst/@blksparse/blksparse.m	Wed Mar 31 21:23:21 2010 +0000
+++ b/main/linear-algebra/inst/@blksparse/blksparse.m	Thu Apr 01 06:43:05 2010 +0000
@@ -107,8 +107,8 @@
 endfunction
 
 function ok = check_version ()
-  ok = compare_versions (version, "3.3.50+", ">=");
+  ok = compare_versions (version, "3.3.51", ">=");
   if (! ok)
-    error ("blksparse: can only be used with Octave 3.3.50+");
+    error ("blksparse: can only be used with Octave 3.3.51+");
   endif
 endfunction