|
From: Arto Seppä <za...@us...> - 2010-08-21 17:23:44
|
Module: performous Branch: master Commit: 98a815587e6d239c017b3e18912cbd333325921e Author: Arto Seppä <za...@us...> Date: Sat Aug 21 19:28:41 2010 +0300 Modified launch script to circumvent a possible crash bug. --- osx-utils/resources/performous-launcher | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/osx-utils/resources/performous-launcher b/osx-utils/resources/performous-launcher index 102dad7..b2680a0 100755 --- a/osx-utils/resources/performous-launcher +++ b/osx-utils/resources/performous-launcher @@ -3,7 +3,8 @@ dir=$(dirname "$0") export PATH=$PATH:"$dir" export FONTCONFIG_PATH="$dir/../Resources/etc/fonts" -# somehow this doesn't work on a MacBookPro under 10.5.8: -#performous 2>&1 --pdev pa19 --mics pa19 +# Without this line, pixbuf tries to use the config file from macports +# environment. Apparently it works just fine without it too. +export GDK_PIXBUF_MODULE_FILE="" # TODO: might be a good idea to turn-off all console output performous |