summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-06-25 15:48:22 -0400
committermidipix <writeonce@midipix.org>2016-06-25 17:35:22 -0400
commita3287409a749144f3673b85e006063b134a473fa (patch)
treef11a69ee32bc7df48e7e7376e2d62be8eb9135cc /configure
parent2bef2e60ca21c9efbd5ceaa90b69e96e38ef8f49 (diff)
downloadntcon-a3287409a749144f3673b85e006063b134a473fa.tar.bz2
ntcon-a3287409a749144f3673b85e006063b134a473fa.tar.xz
build system: configure test optimization: use `awk` instead of `grep | cut`.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure b/configure
index 250655e..309b128 100755
--- a/configure
+++ b/configure
@@ -314,8 +314,7 @@ native_defaults()
mb_native_os=`uname | tr '[:upper:]' '[:lower:]'`
mb_native_os_sizeof_pointer=`$mb_native_cc -dM -E - < /dev/null \
- | grep __SIZEOF_POINTER__ \
- | cut -d ' ' -f3`
+ | awk '$2 == "__SIZEOF_POINTER__" { print $3 }'`
mb_native_os_bits=`expr '8' '*' '0'"$mb_native_os_sizeof_pointer"`