donaldp     01/09/12 21:38:58

  Modified:    lib/optional .cvsignore
               src/main/org/apache/tools/ant/taskdefs Ant.java
  Log:
  Fix bug in Ant where the system properties would not be placed into new 
Project when inheritall=false. (This was due to confusion between variable 
naming).
  
  Submitted by: Jason Brittain <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.2       +1 -0      jakarta-ant/lib/optional/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/lib/optional/.cvsignore,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- .cvsignore        2001/07/27 07:27:11     1.1
  +++ .cvsignore        2001/09/13 04:38:58     1.2
  @@ -1 +1,2 @@
   jdepend*.jar
  +s*.jar
  \ No newline at end of file
  
  
  
  1.26      +1 -1      
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Ant.java
  
  Index: Ant.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Ant.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- Ant.java  2001/08/07 11:43:32     1.25
  +++ Ant.java  2001/09/13 04:38:58     1.26
  @@ -169,7 +169,7 @@
   
              // set Java built-in properties separately,
              // b/c we won't inherit them.
  -           project.setSystemProperties();
  +           p1.setSystemProperties();
           }
           
           e = prop1.keys();
  
  
  

Reply via email to