diff options
-rw-r--r-- | desktop/source/app/officeipcthread.cxx | 2 | ||||
-rw-r--r-- | desktop/unx/source/start.c | 2 | ||||
-rw-r--r-- | distro-configs/LibreOfficeFlatpak.conf (renamed from distro-configs/LibreOfficeXdgApp.conf) | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx index e9feb5caf483..75bd51e7dc9c 100644 --- a/desktop/source/app/officeipcthread.cxx +++ b/desktop/source/app/officeipcthread.cxx @@ -730,7 +730,7 @@ RequestHandler::Status RequestHandler::Enable(bool ipc) enum class Kind { Pipe, Dbus }; Kind kind = Kind::Pipe; #if ENABLE_DBUS - if (std::getenv("LIBO_XDGAPP") != nullptr) { + if (std::getenv("LIBO_FLATPAK") != nullptr) { kind = Kind::Dbus; } #endif diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c index 3b23124bf4b6..893c79c4e0b7 100644 --- a/desktop/unx/source/start.c +++ b/desktop/unx/source/start.c @@ -757,7 +757,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS( argc, argv ) if ( pUsePlugin && !strcmp(pUsePlugin, "svp") ) args->bInhibitSplash = sal_True; - if ( !args->bInhibitPipe && getenv("LIBO_XDGAPP") == NULL ) + if ( !args->bInhibitPipe && getenv("LIBO_FLATPAK") == NULL ) { int fd = 0; pPipePath = get_pipe_path( args->pAppPath ); diff --git a/distro-configs/LibreOfficeXdgApp.conf b/distro-configs/LibreOfficeFlatpak.conf index 28a4d312c4cd..d5d6686936e4 100644 --- a/distro-configs/LibreOfficeXdgApp.conf +++ b/distro-configs/LibreOfficeFlatpak.conf @@ -1,6 +1,6 @@ --disable-odk --enable-release-build ---with-extra-buildid=xdg-app version +--with-extra-buildid=Flatpak version --with-lang=ALL --with-system-libs --with-vendor=The Document Foundation |