aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.in2
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a0fb85224..bf411e70af 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,11 @@
2004-11-03 JP Rosevear <jpr@novell.com>
+ * configure.in: fix the logic
+
+2004-11-03 JP Rosevear <jpr@novell.com>
+
* configure.in: handle plain --enable-plugins and
- --enable-plugins=yes by making it the equivalent of "all"
+ --enable-plugins=yes by making it the equivalent of "all"
2004-11-03 Not Zed <NotZed@Ximian.com>
diff --git a/configure.in b/configure.in
index 7a99d038ee..c920a25a0a 100644
--- a/configure.in
+++ b/configure.in
@@ -1346,7 +1346,7 @@ if test x"$enable_plugins" = "xno"; then
plugins_enabled=""
msg_plugins="no"
else
- if test x"$enable_plugins" = "xyes" | test x"$enable_plugins" = "xall"; then
+ if test x"$enable_plugins" = "xyes" -o x"$enable_plugins" = "xall"; then
plugins_enabled="$plugins_all"
msg_plugins="yes (all)"
else