[pypy-commit] pypy default: darwin fix

arigo noreply at buildbot.pypy.org
Mon May 4 22:29:00 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
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
 
 


More information about the pypy-commit mailing list