Commit 731b268c by Patrik Lundin

env-setup: Don't use ${.sh.file} if shell is pdksh

The default ksh in OpenBSD throws the following error:
===
$ . hacking/env-setup
ksh: hacking/env-setup[23]: ${.sh.file}": bad substitution
[...]
===

The same error can be seen on Linux if pdksh is used.
parent 22304afd
...@@ -16,7 +16,7 @@ if [ -n "$BASH_SOURCE" ] ; then ...@@ -16,7 +16,7 @@ if [ -n "$BASH_SOURCE" ] ; then
HACKING_DIR=$(dirname "$BASH_SOURCE") HACKING_DIR=$(dirname "$BASH_SOURCE")
elif [ $(basename -- "$0") = "env-setup" ]; then elif [ $(basename -- "$0") = "env-setup" ]; then
HACKING_DIR=$(dirname "$0") HACKING_DIR=$(dirname "$0")
elif [ -n "$KSH_VERSION" ]; then elif [ -n "$KSH_VERSION" ] && echo $KSH_VERSION | grep -qv '^@(#)PD KSH'; then
HACKING_DIR=$(dirname "${.sh.file}") HACKING_DIR=$(dirname "${.sh.file}")
else else
HACKING_DIR="$PWD/hacking" HACKING_DIR="$PWD/hacking"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment