diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-11-17 10:37:19 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-11-17 13:16:13 +0100 |
commit | 1b2da574ba2c37891ee59709731537af7a1ca3c2 (patch) | |
tree | 9f397958a3877c5d5f58a6b684a9d93629f29ad7 | |
parent | 31a1dcbe9ace047a50fa955e35de4fb5f3a023c9 (diff) |
bin/run: missing exedir for macOS
...but even the you still get a failure
> $ bin/run vcldemo
> 2019-11-17 10:37:53.159 vcldemo[18891:7736267] No Info.plist file in application bundle or no NSPrincipalClass in the Info.plist file, exiting
Change-Id: I7c11ee5a02c4a71cf3c79dc7b5b180c3e28c059b
Reviewed-on: https://gerrit.libreoffice.org/83015
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rwxr-xr-x | bin/run | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -46,6 +46,7 @@ elif [ $(uname) = Darwin ]; then exit 1 fi + exedir="$dir"/workdir/LinkTarget/Executable export URE_BOOTSTRAP=file://"${dir}"/instdir/$PRODUCTNAME.app/Contents/Resources/fundamentalrc export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH:+$DYLD_LIBRARY_PATH:}"${dir}"/instdir/$PRODUCTNAME.app/Contents/Frameworks SEARCH_PATH="${DYLD_LIBRARY_PATH}" |