[Jython-checkins] jython: Fixing handling of buildno on windows

alan.kennedy jython-checkins at python.org
Sat Feb 9 21:04:49 CET 2013


http://hg.python.org/jython/rev/d5a22e9b622a
changeset:   7024:d5a22e9b622a
user:        Alan Kennedy <alan at xhaus.com>
date:        Sat Feb 09 20:03:19 2013 +0000
summary:
  Fixing handling of buildno on windows

files:
  build.xml |  6 ++++--
  1 files changed, 4 insertions(+), 2 deletions(-)


diff --git a/build.xml b/build.xml
--- a/build.xml
+++ b/build.xml
@@ -359,8 +359,10 @@
       <condition property="hg-run">
         <and>
           <isset property="hg.present"/>
-          <!-- XXX: Might this work on Windows? -->
-          <isset property="os.family.unix"/>
+          <or>
+              <isset property="os.family.unix"/>
+              <isset property="os.family.windows"/>
+          </or>
         </and>
       </condition>
     </target>

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list