|
From: <mk...@us...> - 2003-03-20 19:13:11
|
Update of /cvsroot/csp/APPLICATIONS/SimData
In directory sc8-pr-cvs1:/tmp/cvs-serv1427
Modified Files:
setup.py
Log Message:
Index: setup.py
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/setup.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** setup.py 20 Mar 2003 18:59:43 -0000 1.6
--- setup.py 20 Mar 2003 19:13:06 -0000 1.7
***************
*** 59,62 ****
--- 59,63 ----
modpath = os.path.join(lib, "SimData")
incpath = os.path.join(inc, "SimData")
+ localinc = os.path.normpath("Include/SimData")
package_files = ['__init__.py', 'Debug.py', 'Parse.py', 'Compile.py']
if win:
***************
*** 68,73 ****
copy_dir("SimData", modpath, package_files)
print "Installing SimData headers to", incpath
! copy_dir("Include/SimData", incpath, headers)
! copy_dir("Include/SimData", incpath, interfaces)
except Exception, e:
print e
--- 69,74 ----
copy_dir("SimData", modpath, package_files)
print "Installing SimData headers to", incpath
! copy_dir(localinc, incpath, headers)
! copy_dir(localinc, incpath, interfaces)
except Exception, e:
print e
|