From b49aa64fdbb2958548e525653a00bd3f38ba8ead Mon Sep 17 00:00:00 2001 From: Joshua Pettus Date: Thu, 28 Jan 2016 17:43:04 -0500 Subject: [PATCH] Fix for launching on case-sensitive systems MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Forgot to take case-sensitive journaled systems into account… --- osxapp/XBoard.gtklauncher | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/osxapp/XBoard.gtklauncher b/osxapp/XBoard.gtklauncher index 2946412..2895275 100755 --- a/osxapp/XBoard.gtklauncher +++ b/osxapp/XBoard.gtklauncher @@ -70,7 +70,7 @@ if [ "x$GTK_DEBUG_SHELL" != "x" ]; then exec bash else - $EXEC "$bundle_contents/MacOS/$name-bin" "$@" + $EXEC "$bundle_contents/MacOS/xboard-bin" "$@" fi -- 1.7.0.4