aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2004-11-03 23:07:52 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-11-03 23:07:52 +0800
commit32f6a8df2adac2df3828a91a724e3a60e6f14c62 (patch)
treeea411a094c3a49f5a41a7f2ea61636db440b0303
parent5bf688e509c4c2325e731c8d397568ba4896e0b5 (diff)
downloadgsoc2013-evolution-32f6a8df2adac2df3828a91a724e3a60e6f14c62.tar
gsoc2013-evolution-32f6a8df2adac2df3828a91a724e3a60e6f14c62.tar.gz
gsoc2013-evolution-32f6a8df2adac2df3828a91a724e3a60e6f14c62.tar.bz2
gsoc2013-evolution-32f6a8df2adac2df3828a91a724e3a60e6f14c62.tar.lz
gsoc2013-evolution-32f6a8df2adac2df3828a91a724e3a60e6f14c62.tar.xz
gsoc2013-evolution-32f6a8df2adac2df3828a91a724e3a60e6f14c62.tar.zst
gsoc2013-evolution-32f6a8df2adac2df3828a91a724e3a60e6f14c62.zip
fix the logic
2004-11-03 JP Rosevear <jpr@novell.com> * configure.in: fix the logic svn path=/trunk/; revision=27826
-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