You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@gump.apache.org by aj...@apache.org on 2004/04/06 16:12:02 UTC

cvs commit: gump/python/gump gumpenv.py

ajack       2004/04/06 07:12:02

  Modified:    python/gump gumpenv.py
  Log:
  The check for noTimeout may not have been run, perhaps due to
  an indentation problem. [Hard to tell with tabs, so I am removing tabs.]
  
  Revision  Changes    Path
  1.5       +7 -7      gump/python/gump/gumpenv.py
  
  Index: gumpenv.py
  ===================================================================
  RCS file: /home/cvs/gump/python/gump/gumpenv.py,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- gumpenv.py	5 Apr 2004 15:53:10 -0000	1.4
  +++ gumpenv.py	6 Apr 2004 14:12:02 -0000	1.5
  @@ -128,15 +128,15 @@
           #
           self.checkExecutable('env','',0)
   
  -	if not self.noJava and not self.checkExecutable(self.javaCommand,'-version',exitOnError,1):
  -	    self.noJava=1
  -	    self.noJavac=1
  +        if not self.noJava and not self.checkExecutable(self.javaCommand,'-version',exitOnError,1):
  +            self.noJava=1
  +            self.noJavac=1
   
  -	if not self.noJavac and not self.checkExecutable('javac','-help',0):
  -	    self.noJavac=1
  +        if not self.noJavac and not self.checkExecutable('javac','-help',0):
  +            self.noJavac=1
   
  -	if not self.noJavac and not self.checkExecutable('java com.sun.tools.javac.Main','-help',0,0,'check_java_compiler'):
  -	    self.noJavac=1
  +        if not self.noJavac and not self.checkExecutable('java com.sun.tools.javac.Main','-help',0,0,'check_java_compiler'):
  +            self.noJavac=1
   
           if not self.noCvs and not self.checkExecutable('cvs','--version',0):
               self.noCvs=1
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org