summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-23 01:42:53 -0500
committermidipix <writeonce@midipix.org>2018-12-24 10:52:06 -0500
commitdf9e628c89c018447d08c560a9200f845526738e (patch)
tree5a33c18eec939b68659ed0b069afa9d3c0b5feac /configure
parent687b7b562a45d40ed578f195196fe2fa3eeea706 (diff)
downloadperk-df9e628c89c018447d08c560a9200f845526738e.tar.bz2
perk-df9e628c89c018447d08c560a9200f845526738e.tar.xz
build system: configure: sub-shell syntax: replace backquotes with $().
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure18
1 files changed, 9 insertions, 9 deletions
diff --git a/configure b/configure
index 1f66dc7..325cdc4 100755
--- a/configure
+++ b/configure
@@ -43,7 +43,7 @@ warning_msg()
init_vars()
{
mb_project_dir=$(cd "$(dirname $0)" ; pwd)
- mb_pwd=`pwd`
+ mb_pwd=$(pwd)
mb_custom_cfgdefs_args=''
mb_custom_cfgdefs_space=''
@@ -422,11 +422,11 @@ native_defaults()
# os
if [ -z "$mb_native_os" ]; then
- mb_native_os=`uname | tr '[:upper:]' '[:lower:]'`
+ mb_native_os=$(uname | tr '[:upper:]' '[:lower:]')
fi
- mb_native_os_sizeof_pointer=`$mb_native_cc -dM -E - < /dev/null \
- | awk '$2 == "__SIZEOF_POINTER__" { print $3 }'`
+ mb_native_os_sizeof_pointer=$($mb_native_cc -dM -E - < /dev/null \
+ | awk '$2 == "__SIZEOF_POINTER__" { print $3 }')
mb_native_os_bits=$((8 * ${mb_native_os_sizeof_pointer:-0}))
@@ -442,7 +442,7 @@ native_defaults()
# grumpily support crooked uname output
if ! [ -f $mb_project_dir/sysinfo/os/$mb_native_os.mk ]; then
- mb_native_os=`echo $mb_native_os | cut -d'_' -f1`
+ mb_native_os=$(echo $mb_native_os | cut -d'_' -f1)
fi
# fallback os recipe
@@ -463,7 +463,7 @@ cross_defaults()
config_flags()
{
mb_ldflags_tmp=" $mb_ldflags "
- mb_ldflags_libs=`echo "$mb_ldflags_tmp" | sed 's/ -static / /g'`
+ mb_ldflags_libs=$(echo "$mb_ldflags_tmp" | sed 's/ -static / /g')
if [ "$mb_ldflags_tmp" != "$mb_ldflags_libs" ]; then
mb_ldflags="$mb_ldflags_libs"
@@ -595,7 +595,7 @@ config_copy()
if [ -z "$mb_cchost" ]; then
if [ "$mb_host" = 'native' ]; then
- mb_cchost=`make -s -f $mb_pwd/Makefile.tmp cchost`
+ mb_cchost=$(make -s -f $mb_pwd/Makefile.tmp cchost)
else
mb_cchost=$mb_host
fi
@@ -636,8 +636,8 @@ config_support()
{
[ _$mb_disable_shared = _yes ] && return 0
- mbt_cc=`make .display-cc`
- mbt_cflags=`make .display-cflags`
+ mbt_cc=$(make .display-cc)
+ mbt_cflags=$(make .display-cflags)
mbt_source='int foo(int x){return ++x;}'
mbt_result='no'