diff options
Diffstat (limited to 'ham')
-rw-r--r-- | ham/hamlib/hamlib.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
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 |