diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-02-27 10:12:34 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-02-27 10:12:34 +0200 |
commit | 675cfeee6f66e265c696d539974a87e479b7b769 (patch) | |
tree | 07f3cd6c8868c7ebc558b2ef4d542629411b989f /configure.in | |
parent | 4c737b647078f35a2435e27d9f7f94039db9d6c3 (diff) |
Fix shell / test OR operator confusion
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index cc251d2d3d59..5cbd236713c9 100644 --- a/configure.in +++ b/configure.in @@ -6365,7 +6365,7 @@ if test "x$enable_postgresql_sdbc" != "xno"; then fi ;; WINNT) - if test "$with_krb5" = "yes" || "$with_gssapi" = "yes"; then + if test "$with_krb5" = "yes" -o "$with_gssapi" = "yes"; then AC_MSG_ERROR([Refusing to enable MIT Kerberos 5 or GSSAPI on Microsoft Windows.]) fi ;; |