From 48d4157f99c00a1180db5298385d396ef840adda Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Mon, 19 May 2025 14:25:30 +0900 Subject: trim some whitespace for hpux checks --- m4/check-os-options.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/m4/check-os-options.m4 b/m4/check-os-options.m4 index 2ef4293..b9f10c7 100644 --- a/m4/check-os-options.m4 +++ b/m4/check-os-options.m4 @@ -74,14 +74,14 @@ char buf[1]; getentropy(buf, 1); ;; *hpux*) HOST_OS=hpux; - if test "`echo $host_os | cut -c 1-4`" = "ia64" ; then - if test "`echo $CC | cut -d ' ' -f 1`" = "gcc" ; then + if test "echo $host_os | cut -c 1-4" = "ia64" ; then + if test "echo $CC | cut -d ' ' -f 1" = "gcc" ; then CFLAGS="$CFLAGS -mlp64" else CFLAGS="+DD64" fi fi - if ! test "`echo $CC | cut -d ' ' -f 1`" = "gcc" ; then + if ! test "echo $CC | cut -d ' ' -f 1" = "gcc" ; then CFLAGS="-g -O2 +Otype_safety=off $CFLAGS $USER_CFLAGS" fi CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600 -D__STRICT_ALIGNMENT" -- cgit v1.2.3-55-g6feb