From ebb378da082c31c7590e4712a7e7045f0d748c9c Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Tue, 5 Jan 2021 09:30:05 -0500 Subject: [PATCH] One additional correction to yesterday's commit, as the 2nd solution was compatible with CentOS but not OSX. This solution appears to be more universally compatible. --- VERSION | 2 +- tcltk/ext2sim.sh.in | 2 +- tcltk/ext2spice.sh.in | 2 +- tcltk/magic.sh.in | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 51c80744..dcc5cfe0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.109 +8.3.110 diff --git a/tcltk/ext2sim.sh.in b/tcltk/ext2sim.sh.in index f737caf4..61d69cf8 100755 --- a/tcltk/ext2sim.sh.in +++ b/tcltk/ext2sim.sh.in @@ -18,7 +18,7 @@ TCL_REL_OR_ABS=TCL_DIR_REL_OR_ABS if [ "${TCL_REL_OR_ABS:0:1}" = "/" ]; then TCL_DIR=$TCL_REL_OR_ABS else - TCL_DIR=$(dirname $(readlink -f ${BASH_SOURCE[0]}))/$TCL_REL_OR_ABS + TCL_DIR=$(cd $(dirname ${BASH_SOURCE[0]})/$TCL_REL_OR_ABS; pwd -P) fi # eval ${TCL_DIR}/magicdnull -dnull -noconsole -nowrapper $mgargs <