codetools: fpcunitset cache: do not expand file name, only normalize

git-svn-id: trunk@45238 -
This commit is contained in:
mattias 2014-05-30 11:34:07 +00:00
parent 20e71e8e42
commit 8ecc6a3c88

View File

@ -8653,7 +8653,7 @@ procedure TFPCUnitSetCache.SetCompilerFilename(const AValue: string);
var
NewFilename: String;
begin
NewFilename:=TrimAndExpandFilename(AValue);
NewFilename:=ResolveDots(AValue);
if FCompilerFilename=NewFilename then exit;
FCompilerFilename:=NewFilename;
ClearConfigCache;