Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4283
Modified Files:
configure.py
Log Message:
little fix
Index: configure.py
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/configure.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** configure.py 19 Jul 2004 22:13:09 -0000 1.3
--- configure.py 19 Jul 2004 22:23:00 -0000 1.4
***************
*** 125,129 ****
config.write("# any changes to this file will be lost!\n")
! config.write("INCLUDEPATH += %s" % ( py_incpath ) )
# Build LIBS
LIBS = ""
--- 125,129 ----
config.write("# any changes to this file will be lost!\n")
! config.write("INCLUDEPATH += %s\n" % ( py_incpath ) )
# Build LIBS
LIBS = ""
***************
*** 133,137 ****
LIBS = "-l%s -L%s" % ( py_libfile, py_libpath )
! config.write("LIBS += %s" % LIBS)
--- 133,137 ----
LIBS = "-l%s -L%s" % ( py_libfile, py_libpath )
! config.write("LIBS += %s\n" % LIBS)
|