summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2012-02-27 10:12:34 +0200
committerTor Lillqvist <tlillqvist@suse.com>2012-02-27 10:12:34 +0200
commit675cfeee6f66e265c696d539974a87e479b7b769 (patch)
tree07f3cd6c8868c7ebc558b2ef4d542629411b989f /configure.in
parentDecouple disabling of scripting (BASIC &co) from OS being iOS (diff)
downloadcore-675cfeee6f66e265c696d539974a87e479b7b769.tar.gz
core-675cfeee6f66e265c696d539974a87e479b7b769.zip
Fix shell / test OR operator confusion
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
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
;;