Browse Source

pkgutil.pas, add_package:
* package names are case insensitive so add them in uppercase to correctly detect duplicates

git-svn-id: branches/svenbarth/packages@31936 -

svenbarth 9 years ago
parent
commit
3949600655
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/pkgutil.pas

+ 1 - 1
compiler/pkgutil.pas

@@ -441,7 +441,7 @@ implementation
       new(entry);
       entry^.package:=nil;
       entry^.realpkgname:=name;
-      packagelist.add(name,entry);
+      packagelist.add(upper(name),entry);
     end;