소스 검색

* fix for doubled slashes in paths by Giulio Bernardi

git-svn-id: trunk@10796 -
Tomas Hajny 17 년 전
부모
커밋
e64c9a152a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      compiler/options.pas

+ 2 - 2
compiler/options.pas

@@ -2401,8 +2401,8 @@ begin
   if fpcdir='' then
     begin
       fpcdir:=ExePath+'../';
-      if not(PathExists(fpcdir+'/units',true)) and
-         not(PathExists(fpcdir+'/rtl',true)) then
+      if not(PathExists(fpcdir+'units',true)) and
+         not(PathExists(fpcdir+'rtl',true)) then
         fpcdir:=fpcdir+'../';
     end;
 {$endif unix}