Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25041
Modified Files:
configure.py
Log Message:
Attempt to get configure.py to work on Fedora and Solaris.
Index: configure.py
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/configure.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** configure.py 19 Oct 2004 18:44:09 -0000 1.38
--- configure.py 19 Oct 2004 18:59:03 -0000 1.39
***************
*** 14,17 ****
--- 14,19 ----
import string
import distutils.sysconfig
+
+ # Older Python lib work arounds...
try:
from optparse import OptionParser
***************
*** 19,23 ****
sys.path.append( './tools/scripts' )
from optparse import OptionParser
!
# These are the variables we are trying to figure out
--- 21,29 ----
sys.path.append( './tools/scripts' )
from optparse import OptionParser
!
! try:
! osHasPathDotSep = sys.path.sep
! except:
! sys.path.sep = '/'
# These are the variables we are trying to figure out
|