Revert "trim some whitespace for hpux checks"

This reverts commit 48d4157f99.
because it didn't trim whitespace and doesn't look right.

Pointed out by @vszakats in
https://github.com/libressl/portable/pull/1165#pullrequestreview-3148582342
This commit is contained in:
Theo Buehler
2025-08-25 00:02:57 -06:00
parent 2f62a5e2e7
commit 4494cd0525

View File

@@ -89,14 +89,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"