[wpdev-commits] wolfpack configure.py,1.34,1.35
Brought to you by:
rip,
thiagocorrea
From: Richard M. <dr...@us...> - 2004-09-11 00:46:41
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4035 Modified Files: configure.py Log Message: Fix, che noticed this. Index: configure.py =================================================================== RCS file: /cvsroot/wpdev/wolfpack/configure.py,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** configure.py 27 Aug 2004 02:32:36 -0000 1.34 --- configure.py 10 Sep 2004 13:21:39 -0000 1.35 *************** *** 49,56 **** def buildLibLine( path, file ): ! if path == "" or file == "": return "" ! if sys.platform == "win32": return path + os.path.sep + file --- 49,56 ---- def buildLibLine( path, file ): ! if path == "" or file == "": return "" ! if sys.platform == "win32": return path + os.path.sep + file *************** *** 60,63 **** --- 60,65 ---- if file[-3:] == ".so": file = file[0:-3] + if file[-2:] == ".a": + file = file[0:-2] result = "-L%s -l%s" % ( path, file ) return result *************** *** 311,315 **** PY_LIBDIR += " -flat_namespace" else: ! PY_LIBDIR = buildLibLine( py_libpath, py_libfile ) config.write("PY_LIBDIR = %s\n" % PY_LIBDIR) config.write("PY_INCDIR = %s\n" % py_incpath ) --- 313,317 ---- PY_LIBDIR += " -flat_namespace" else: ! PY_LIBDIR = buildLibLine( py_libpath, py_libfile ) config.write("PY_LIBDIR = %s\n" % PY_LIBDIR) config.write("PY_INCDIR = %s\n" % py_incpath ) *************** *** 327,331 **** CONFIG += "release warn_off " ! # if --aidebug if options.enable_aidebug: --- 329,333 ---- CONFIG += "release warn_off " ! # if --aidebug if options.enable_aidebug: |