pyinstaller: correctly set the GST_PLUGIN_PATH when kivy is running, but it will work only if plugins and libs are included. refs #462

This commit is contained in:
Mathieu Virbel 2012-09-25 15:42:44 +02:00
parent a0aaab6924
commit 3f63aba589
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ else:
sys.path += [join(root, '_libs')]
environ['GST_PLUGIN_PATH'] = join(root, '..', 'gst-plugins')
environ['KIVY_DATA_DIR'] = join(root, 'data')
environ['KIVY_EXTS_DIR'] = join(root, 'extensions')
environ['KIVY_MODULES_DIR'] = join(root, 'modules')