summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorBruce Momjian2005-03-02 15:42:35 +0000
committerBruce Momjian2005-03-02 15:42:35 +0000
commit8ba5169abd63c1c05abb853087227b2456cee757 (patch)
treeb464771b5ab9914b27a2f2c22b9b818229117210 /configure
parentf8aca046bba24c9e1fa91ef6839db7736ee4de5e (diff)
Use test && test rather than test -a, per Peter.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 6fc23b53442..a53bc247060 100755
--- a/configure
+++ b/configure
@@ -14528,7 +14528,7 @@ fi
# Force use of our snprintf if system's doesn't do arg control
# This feature is used by NLS
-if test "$enable_nls" = yes -a $pgac_need_repl_snprintf = no; then
+if test "$enable_nls" = yes && test $pgac_need_repl_snprintf = no; then
echo "$as_me:$LINENO: checking whether printf supports argument control" >&5
echo $ECHO_N "checking whether printf supports argument control... $ECHO_C" >&6
if test "${pgac_cv_printf_arg_control+set}" = set; then