You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by Magesh Umasankar <um...@rediffmail.com> on 2001/10/01 02:21:46 UTC

[PATCH] Re: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/util SourceFileScanner.java

I noticed that Stefan had changed the patch that I 
submitted a little bit to make it better before 
committing it and hence this glitch.  The patch that I
have attached now should take care of it.

Thanks,
Magesh


On Mon, 01 Oct 2001 Sam Ruby wrote :
> > conor       01/09/30 06:21:54
> >
> >  Modified:
> >               src/main/org/apache/tools/ant/util 
> SourceFileScanner.java
> >  Log:
> >  Merge of 1.4.1 changes into Main truck for Gump 
> testing
> >
> [snip]
> >
> >  Index: SourceFileScanner.java
> >  =====================================================-
> ==============
> >  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/t-
> ools/ant/util/SourceFileScanner.java,v
> >  retrieving revision 1.5
> >  retrieving revision 1.6
> >  diff -u -w -u -r1.5 -r1.6
> >  --- SourceFileScanner.java 2000/11/29 14:42:49  1.5
> >  +++ SourceFileScanner.java 2001/09/30 13:21:54  1.6
> >  @@ -118,7 +121,7 @@
> >                   continue;
> >               }
> >
> >  -            File src = new File(srcDir, files[i]);
> >  +            File src = fileUtils.resolveFile(srcDir,
>  files[i]);
> >               if (src.lastModified() > now) {
> >                   task.log("Warning: "+files[i]+" 
> modified in the future.",
> >                            Project.MSG_WARN);
> 
> http://nagoya.apache.org/~rubys/gump/dist-ant.html
> 
> Approximately 9 hours left until the "official" Gump 
> run.  ;-)
> 
> - Sam Ruby
> 
 

Re: [PATCH] Re: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/util SourceFileScanner.java

Posted by Stefan Bodewig <bo...@apache.org>.
thanks