From 4e4827b22d6ef990fdf2e25eea19e08cc0c0cf14 Mon Sep 17 00:00:00 2001 From: "Grant T. Olson" Date: Fri, 27 Sep 2013 10:28:01 -0400 Subject: [PATCH 1/2] Force the right version of osx in the build script --- osx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osx.sh b/osx.sh index 2f59f446..834a6243 100755 --- a/osx.sh +++ b/osx.sh @@ -14,7 +14,7 @@ fi echo "Creating OS X packages for Bitmessage." -cd src && python build_osx.py py2app +cd src && python2.7 build_osx.py py2app if [[ $? = "0" ]]; then hdiutil create -fs HFS+ -volname "Bitmessage" -srcfolder dist/Bitmessage.app dist/bitmessage-v$1.dmg From 497c29702038180175a42a27ae8c97bf7fd87efe Mon Sep 17 00:00:00 2001 From: "Grant T. Olson" Date: Fri, 27 Sep 2013 10:28:40 -0400 Subject: [PATCH 2/2] Include translation resources --- src/build_osx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build_osx.py b/src/build_osx.py index f9ab2c03..097551b7 100644 --- a/src/build_osx.py +++ b/src/build_osx.py @@ -11,7 +11,7 @@ setup( setup_requires = ["py2app"], options = dict( py2app = dict( - resources = ["images"], + resources = ["images", "translations"], includes = ['sip', 'PyQt4._qt'], iconfile = "images/bitmessage.icns" )