Source
xxxxxxxxxx
--- spyderlib/utils/programs.py.orig 2011-10-12 11:06:09.000000000 -0500
+++ spyderlib/utils/programs.py 2011-10-12 11:07:28.000000000 -0500
abspath = osp.join(path, basename)
if osp.isfile(abspath):
return abspath
+ else:
+ abspath = "@@APPS_DIR@@/Qt4/" + basename + ".app/Contents/MacOS/" + basename
+ if osp.isfile(abspath):
+ return abspath
def find_program(basename):