diff options
author | JP Rosevear <jpr@novell.com> | 2004-11-03 23:07:52 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-11-03 23:07:52 +0800 |
commit | 32f6a8df2adac2df3828a91a724e3a60e6f14c62 (patch) | |
tree | ea411a094c3a49f5a41a7f2ea61636db440b0303 /configure.in | |
parent | 5bf688e509c4c2325e731c8d397568ba4896e0b5 (diff) | |
download | gsoc2013-evolution-32f6a8df2adac2df3828a91a724e3a60e6f14c62.tar.gz 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
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 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 |