[wpdev-commits] wolfpack configure.py,1.22,1.23
Brought to you by:
rip,
thiagocorrea
From: Correa <thi...@us...> - 2004-08-22 05:02:20
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10439 Modified Files: configure.py Log Message: Small fix Index: configure.py =================================================================== RCS file: /cvsroot/wpdev/wolfpack/configure.py,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** configure.py 19 Aug 2004 12:08:25 -0000 1.22 --- configure.py 22 Aug 2004 05:02:09 -0000 1.23 *************** *** 81,85 **** sys.stdout.write( "Checking QTDIR enviroment variable..." ) ! if ( len( os.environ["QTDIR"] ) > 0 and os.path.exists( os.environ["QTDIR"] ) ): sys.stdout.write( "ok\n" ) else: --- 81,85 ---- sys.stdout.write( "Checking QTDIR enviroment variable..." ) ! if ( os.environ.has_key("QTDIR") and os.path.exists( os.environ["QTDIR"] ) ): sys.stdout.write( "ok\n" ) else: |