Changeset: f84b3282317d for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=f84b3282317d
Modified Files:
        NT/wincompile.py
Branch: Oct2014
Log Message:

Only extract constituent object files from .lib if not in same folder.
This is needed for compiling the RIntegration module which uses R.lib
in the local directory.


diffs (12 lines):

diff --git a/NT/wincompile.py b/NT/wincompile.py
--- a/NT/wincompile.py
+++ b/NT/wincompile.py
@@ -70,7 +70,7 @@ def process(args, recursive = False):
         elif arg[:1] in ('-', '/'):
             argv.append(arg)
         elif arg.endswith('.lib'):
-            if os.path.isabs(arg) or not os.path.exists(arg) or 
os.path.exists(arg[:-4] + '.dll'):
+            if os.path.isabs(arg) or not os.path.exists(arg) or 
os.path.exists(arg[:-4] + '.dll') or '\\' not in arg:
                 argv.append(arg)
             else:
                 dirname = os.path.dirname(arg)
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to