Fix Linux cppuhelper_detail_findSofficePath

...so that it looks for the /usr/bin/ symlink with the name with which it is
created by sysui/CustomTarget_share.mk via sysui/desktop/share/create_tree.sh

Change-Id: I46c2bb9d8df936fd5c7bd52bbee86da959d5c6cb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176597
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
This commit is contained in:
Stephan Bergmann 2024-11-14 13:48:51 +01:00
parent 80cea92291
commit 6c5355d45d
2 changed files with 8 additions and 3 deletions

View file

@ -15,9 +15,12 @@ Version settings
#undef LIBO_VERSION_PATCH
#undef LIBO_THIS_YEAR
#define LIBO_VERSION_DOTTED \
#define LIBO_VERSION_DOTTED_2 \
LIBO_VERSION_STRINGIFY(LIBO_VERSION_MAJOR) "." \
LIBO_VERSION_STRINGIFY(LIBO_VERSION_MINOR) "." \
LIBO_VERSION_STRINGIFY(LIBO_VERSION_MINOR)
#define LIBO_VERSION_DOTTED \
LIBO_VERSION_DOTTED_2 "." \
LIBO_VERSION_STRINGIFY(LIBO_VERSION_MICRO) "." \
LIBO_VERSION_STRINGIFY(LIBO_VERSION_PATCH)

View file

@ -22,6 +22,7 @@
#include <stdlib.h>
#include <string.h>
#include <config_version.h>
#include <cppuhelper/findsofficepath.h>
#if defined(_WIN32)
@ -136,7 +137,8 @@ static char* platformSpecific(void)
const int SEPARATOR = '/';
const char* PATHSEPARATOR = ":";
const char* PATHVARNAME = "PATH";
const char* APPENDIX = "/libreoffice";
const char* APPENDIX = "/libreoffice" LIBO_VERSION_DOTTED_2;
// must match the product's UNIXFILENAME.* in sysui/productlist.mk
char* path = NULL;
char* str = NULL;