Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r77057:92f5f39f0e7b
Date: 2015-05-04 22:29 +0200
http://bitbucket.org/pypy/pypy/changeset/92f5f39f0e7b/

Log:    darwin fix

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
@@ -51,7 +51,7 @@
 
     def gen_makefile(self, cfiles, eci, exe_name=None, path=None,
                      shared=False, headers_to_precompile=[],
-                     no_precompile_cfiles = []):
+                     no_precompile_cfiles = [], icon=None):
         # ensure frameworks are passed in the Makefile
         fs = self._frameworks(eci.frameworks)
         if len(fs) > 0:
@@ -60,7 +60,8 @@
         mk = super(Darwin, self).gen_makefile(cfiles, eci, exe_name, path,
                                 shared=shared,
                                 headers_to_precompile=headers_to_precompile,
-                                no_precompile_cfiles = no_precompile_cfiles)
+                                no_precompile_cfiles = no_precompile_cfiles,
+                                icon=icon)
         return mk
 
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to