1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Use test && test rather than test -a, per Peter.

This commit is contained in:
Bruce Momjian
2005-03-02 15:42:35 +00:00
parent f8aca046bb
commit 8ba5169abd
2 changed files with 3 additions and 3 deletions

2
configure vendored
View File

@ -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