[jboss-cvs] JBossAS SVN: r68519 - branches/Branch_4_2/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Dec 21 12:44:33 EST 2007


Author: acoliver at jboss.org
Date: 2007-12-21 12:44:33 -0500 (Fri, 21 Dec 2007)
New Revision: 68519

Modified:
   branches/Branch_4_2/build/build.xml
Log:
http://jira.jboss.com/jira/browse/JBAS-5073 - this is a minor fix that fixes a cut/paste typo in the build.  After this then authenticated proxies work.  Prior to this they do not (because the condition is outside of a target!)

Modified: branches/Branch_4_2/build/build.xml
===================================================================
--- branches/Branch_4_2/build/build.xml	2007-12-21 16:34:34 UTC (rev 68518)
+++ branches/Branch_4_2/build/build.xml	2007-12-21 17:44:33 UTC (rev 68519)
@@ -834,7 +834,6 @@
             </not>
         </and>
     </condition>
-  </target>
 
   <!-- set proxy settings -->
   <condition property="hasproxyauth">
@@ -850,8 +849,12 @@
             </not>
         </and>
     </condition>
+
+  </target>
+
   <target name="set.proxy" depends="set.proxy.withoutauth, set.proxy.auth"/>
 
+
   <!-- set proxy settings without auth -->
   <target name="set.proxy.withoutauth" if="hasproxy" unless="hasproxyauth" depends="check.proxy">
     <echo>Proxy is set to ${proxy.host}:${proxy.port}</echo>




More information about the jboss-cvs-commits mailing list