configure: Replace backticks with $()

This commit is contained in:
Matthew Wild 2018-10-01 15:29:54 +01:00
parent 15b35ed42b
commit 72c9822ae0

14
configure vendored
View file

@ -92,7 +92,7 @@ EOF
# Helper functions # Helper functions
find_program() { find_program() {
prog=`command -v "$1" 2>/dev/null` prog=$(command -v "$1" 2>/dev/null)
if [ -n "$prog" ] if [ -n "$prog" ]
then then
dirname "$prog" dirname "$prog"
@ -124,9 +124,9 @@ echo_n() {
while [ -n "$1" ] while [ -n "$1" ]
do do
value="`echo $1 | sed 's/[^=]*.\(.*\)/\1/'`" value=$(echo "$1" | sed 's/[^=]*.\(.*\)/\1/')
key="`echo $1 | sed 's/=.*//'`" key=$(echo "$1" | sed 's/=.*//')
if `echo "$value" | grep "~" >/dev/null 2>/dev/null` if echo "$value" | grep "~" >/dev/null 2>/dev/null
then then
echo echo
echo '*WARNING*: the "~" sign is not expanded in flags.' echo '*WARNING*: the "~" sign is not expanded in flags.'
@ -338,7 +338,7 @@ then
fi fi
detect_lua_version() { detect_lua_version() {
detected_lua=`$1 -e 'print(_VERSION:match(" (5%.[123])$"))' 2> /dev/null` detected_lua=$("$1" -e 'print(_VERSION:match(" (5%.[123])$"))' 2> /dev/null)
if [ "$detected_lua" != "nil" ] if [ "$detected_lua" != "nil" ]
then then
if [ "$LUA_VERSION_SET" != "yes" ] if [ "$LUA_VERSION_SET" != "yes" ]
@ -367,7 +367,7 @@ search_interpreter() {
find_lua="$LUA_BINDIR" find_lua="$LUA_BINDIR"
fi fi
else else
find_lua=`find_program lua$suffix` find_lua=$(find_program lua"$suffix")
fi fi
if [ -n "$find_lua" -a -x "$find_lua/lua$suffix" ] if [ -n "$find_lua" -a -x "$find_lua/lua$suffix" ]
then then
@ -380,7 +380,7 @@ search_interpreter() {
fi fi
if [ "$LUA_DIR_SET" != "yes" ] if [ "$LUA_DIR_SET" != "yes" ]
then then
LUA_DIR=`dirname "$find_lua"` LUA_DIR=$(dirname "$find_lua")
fi fi
LUA_SUFFIX="$suffix" LUA_SUFFIX="$suffix"
return 0 return 0