Browse Source

* avoid searching of include file in start dir first

pierre 25 years ago
parent
commit
170d305b21
1 changed files with 8 additions and 3 deletions
  1. 8 3
      compiler/scandir.inc

+ 8 - 3
compiler/scandir.inc

@@ -652,7 +652,9 @@ const
             2. local includepath
             3. global includepath }
            found:=false;
-           path:=FindFile(name+ext,path+';'+current_scanner^.inputfile^.path^+';.',found);
+           if path<>'' then
+             path:=path+';';
+           path:=FindFile(name+ext,path+current_scanner^.inputfile^.path^+';.'+DirSep,found);
            if (not found) then
             path:=current_module^.localincludesearchpath.FindFile(name+ext,found);
            if (not found) then
@@ -1250,7 +1252,10 @@ const
 
 {
   $Log$
-  Revision 1.72  2000-01-07 01:14:37  peter
+  Revision 1.73  2000-01-14 14:28:40  pierre
+   * avoid searching of include file in start dir first
+
+  Revision 1.72  2000/01/07 01:14:37  peter
     * updated copyright to 2000
 
   Revision 1.71  2000/01/04 15:15:53  florian
@@ -1352,4 +1357,4 @@ const
       is not enabled when quitting global section
     * local vars and procedures are not yet stored into PPU
 
-}
+}