From 4a869f5aee911137a7a28212a1c9a8229c941597 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 15 Jul 2024 03:46:48 -0400 Subject: ham/hamlib: Replaced backtick cmdsub. Signed-off-by: B. Watson Signed-off-by: Willy Sudiarto Raharjo --- ham/hamlib/hamlib.SlackBuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ham') diff --git a/ham/hamlib/hamlib.SlackBuild b/ham/hamlib/hamlib.SlackBuild index bac0eecc24..c84b641e0b 100644 --- a/ham/hamlib/hamlib.SlackBuild +++ b/ham/hamlib/hamlib.SlackBuild @@ -93,19 +93,19 @@ fi if { [ x"${PY_MOD}" = x"yes" ] || [ x"${PY3_MOD}" = x"yes" ]; } then PYTHON_BINDING="--with-python-binding" - PYV=`python -c "import sys;t='{v[0]}.{v[1]}'.format(v=list(sys.version_info[:2]));sys.stdout.write(t)";` + PYV=$( python -c "import sys;t='{v[0]}.{v[1]}'.format(v=list(sys.version_info[:2]));sys.stdout.write(t)"; ) else PYTHON_BINDING="" fi if [ x"${PY3_MOD}" = x"yes" ]; then - export PYTHON=`which python3` - PYV=`python3 -c "import sys;t='{v[0]}.{v[1]}'.format(v=list(sys.version_info[:2]));sys.stdout.write(t)";` + export PYTHON=$( which python3 ) + PYV=$( python3 -c "import sys;t='{v[0]}.{v[1]}'.format(v=list(sys.version_info[:2]));sys.stdout.write(t)"; ) fi if [ x"${TCL_MOD}" = x"yes" ]; then TCL_BINDING="--with-tcl-binding" - TCLV=`echo 'puts $tcl_version;exit 0' | tclsh` + TCLV=$( echo 'puts $tcl_version;exit 0' | tclsh ) else TCL_BINDING="" fi -- cgit v1.2.3