diff --git a/dist/macos/macdeploy.py b/dist/macos/macdeploy.py index f49cc1cb0..9c8a13a77 100755 --- a/dist/macos/macdeploy.py +++ b/dist/macos/macdeploy.py @@ -51,6 +51,7 @@ QT_PLUGINS_SEARCH_PATH = [ GSTREAMER_SEARCH_PATH = [ '/usr/local/lib/gstreamer-1.0', + '/usr/local/Cellar/gstreamer', ] GSTREAMER_PLUGINS = [ @@ -460,7 +461,7 @@ def main(): for plugin in GSTREAMER_PLUGINS: FixPlugin(FindGstreamerPlugin(plugin), 'gstreamer') - #FixPlugin(FindGstreamerPlugin('gst-plugin-scanner'), '.') + FixPlugin(FindGstreamerPlugin('gst-plugin-scanner'), '.') FixPlugin(FindGioModule('libgiognutls.so'), 'gio-modules') FixPlugin(FindGioModule('libgiognomeproxy.so'), 'gio-modules') diff --git a/src/main.cpp b/src/main.cpp index 929061836..e87119217 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -163,7 +163,7 @@ int main(int argc, char* argv[]) { QtSingleApplication a(argc, argv); #if defined(Q_OS_DARWIN) && defined(USE_BUNDLE) - qLog(Debug) << "Looking for resources in" + QCoreApplication::applicationDirPath() + "/" + USE_BUNDLE_DIR; + qLog(Debug) << "Looking for resources in" << QCoreApplication::applicationDirPath() + "/" + USE_BUNDLE_DIR; QCoreApplication::setLibraryPaths(QStringList() << QCoreApplication::applicationDirPath() + "/" + USE_BUNDLE_DIR); #endif