diff options
author | Tor Lillqvist <tml@collabora.com> | 2020-05-27 10:52:40 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2020-05-27 13:22:06 +0200 |
commit | 331daea09c7f7bf0a35ca62c99209cf31f8cdc01 (patch) | |
tree | a11a9a138f8b8722407e8085568c0b39db8c0960 /configure.ac | |
parent | bf7acc698f91f420ac1b3796f18c1ae76ce1e401 (diff) |
Use $PRODUCTNAME_WITHOUT_SPACES in app bundle name in help message for macOS
Don't mention $PRODUCTNAME at all in the message in general as it
might look confusing to newbie developers if it says "LibreOfficeDev".
On the other hand, hardcoding "LibreOffice" is misleading, too, if
what you are building is something not called LibreOffice.
Change-Id: Iee4949ea68bbaa542b577cc652b5241eaf4ac438
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94932
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5ba7b47d8963..fe425319b8f8 100644 --- a/configure.ac +++ b/configure.ac @@ -13554,11 +13554,11 @@ _EOF if test $_os != WINNT -a "$CROSS_COMPILING" != TRUE; then cat << _EOF -After the build of LibreOffice has finished successfully, you can immediately run LibreOffice using the command: +After the build has finished successfully, you can immediately run what you built using the command: _EOF if test $_os = Darwin; then - echo open instdir/$PRODUCTNAME.app + echo open instdir/$PRODUCTNAME_WITHOUT_SPACES.app else echo instdir/program/soffice fi |