diff scripts/pkg/pkg.m @ 6500:3ea308b4b37e

[project @ 2007-04-05 19:14:03 by jwe]
author jwe
date Thu, 05 Apr 2007 19:14:03 +0000
parents e0acfe7c3f7b
children 3a53d0f3e0e4
line wrap: on
line diff
--- a/scripts/pkg/pkg.m	Thu Apr 05 18:53:03 2007 +0000
+++ b/scripts/pkg/pkg.m	Thu Apr 05 19:14:03 2007 +0000
@@ -251,10 +251,10 @@
 if (isfield (desc{1}, "autoload"))
   a = desc{1}.autoload;
   if ((isnumeric (a) && a > 0)
-      || (ischar (a) && (stricmp (a, "true")
-			 || stricmp (a, "on")
-			 || stricmp (a, "yes")
-			 || stricmp (a, "1"))))
+      || (ischar (a) && (strcmpi (a, "true")
+			 || strcmpi (a, "on")
+			 || strcmpi (a, "yes")
+			 || strcmpi (a, "1"))))
     auto = true;
   endif
 endif