Author: mattip <[email protected]>
Branch: 
Changeset: r76481:adc34b25572f
Date: 2015-03-20 07:47 +0200
http://bitbucket.org/pypy/pypy/changeset/adc34b25572f/

Log:    4d66c739aa16 was too strict, why?

diff --git a/rpython/translator/platform/darwin.py 
b/rpython/translator/platform/darwin.py
--- a/rpython/translator/platform/darwin.py
+++ b/rpython/translator/platform/darwin.py
@@ -14,7 +14,8 @@
 
     def get_rpath_flags(self, rel_libdirs):
         # needed for cross compiling on ARM, needs fixing if relevant for 
darwin
-        assert len(rel_libdirs) < 1
+        if len(rel_libdirs) > 0:
+            print 'in get_rpath_flags, rel_libdirs is not fixed up',rel_libdirs
         return self.rpath_flags 
 
     def _args_for_shared(self, args):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to