From 2a583f3443dbb45019746128cdef11ca4f8e1bb0 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 11 Oct 2010 11:51:20 -0400 Subject: [PATCH] Fix syntax error --HG-- branch : 1.7 --- configure | 4 +--- configure.in | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/configure b/configure index 4a9b593a3..834c1bdfb 100755 --- a/configure +++ b/configure @@ -12889,9 +12889,7 @@ done if test -z "$GCC"; then # HP-UX bundled compiler can't generate shared objects - if -z "$pic_flag"; then - with_noexec=no - fi + test -z "$pic_flag" && with_noexec=no # Use the +DAportable flag on hppa if it is supported case "$host_cpu" in diff --git a/configure.in b/configure.in index 2588b74a8..7c022c75f 100644 --- a/configure.in +++ b/configure.in @@ -1480,9 +1480,7 @@ case "$host" in if test -z "$GCC"; then # HP-UX bundled compiler can't generate shared objects - if -z "$pic_flag"; then - with_noexec=no - fi + test -z "$pic_flag" && with_noexec=no # Use the +DAportable flag on hppa if it is supported case "$host_cpu" in -- 2.50.1