Skip to content
Snippets Groups Projects
Commit b085969e authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

now checks date of .o files

Rev: lib/master.pike.in:1.29
parent 38ac577c
No related branches found
No related tags found
No related merge requests found
/* $Id: master.pike.in,v 1.28 1998/05/13 07:36:56 hubbe Exp $ /* $Id: master.pike.in,v 1.29 1998/05/19 20:39:20 hubbe Exp $
* *
* Master-file for Pike. * Master-file for Pike.
* *
...@@ -211,13 +211,16 @@ static program low_findprog(string pname, string ext) ...@@ -211,13 +211,16 @@ static program low_findprog(string pname, string ext)
{ {
case "": case "":
case ".pike": case ".pike":
if( (s=master_file_stat(fname+".o")) && s[1]>=0 ) if(array s2=master_file_stat(fname+".o"))
{ {
mixed err=catch { if(s2[1]>=0 && s2[2]>=s[2])
return decode_value(_static_modules.files()->Fd(fname+".o","r")->read(),Codec()); {
}; mixed err=catch {
if(want_warnings) return decode_value(_static_modules.files()->Fd(fname+".o","r")->read(),Codec());
werror("Failed to decode %s.o\n",fname); };
if(want_warnings)
werror("Failed to decode %s.o\n",fname);
}
} }
if ( mixed e=catch { ret=compile_file(fname); } ) if ( mixed e=catch { ret=compile_file(fname); } )
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment