From: Stephan Witt Date: Thu, 14 Sep 2017 07:00:16 +0000 (+0200) Subject: #10762 don't hard-code the location of LyX bundle - use script path name for lyxrc... X-Git-Tag: 2.3.0rc1~101 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=615afdc5a3533973b86b1c4a4d0b4202ab1afca5;p=features.git #10762 don't hard-code the location of LyX bundle - use script path name for lyxrc.dist lookup (cherry picked from commit 8cbed5ef4ac4981db0f232767d2f8b2c24b5738d) --- diff --git a/development/MacOSX/lyxeditor b/development/MacOSX/lyxeditor index aeb6370dfd..476ffc0755 100755 --- a/development/MacOSX/lyxeditor +++ b/development/MacOSX/lyxeditor @@ -64,7 +64,8 @@ done # echo "preferences file sets lyxpipe as ${LYXPIPE}" test -z "${LYXPIPE}" && { - ABS_SYSTEM_LYXDIR='/Applications/LyX.app/Contents/Resources' + ABS_SYSTEM_LYXDIR=$(dirname "$0") + ABS_SYSTEM_LYXDIR=$(dirname "${ABS_SYSTEM_LYXDIR}")"/Resources" test -d "${ABS_SYSTEM_LYXDIR}" || { echo "Failed to find ABS_SYSTEM_LYXDIR: ${ABS_SYSTEM_LYXDIR}" >&2 exit 1