summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2011-08-18 23:48:46 +0000
committerStephen Fisher <steve@stephen-fisher.com>2011-08-18 23:48:46 +0000
commita6d3e1fa30edc0feed68079d64b524478a044149 (patch)
tree82962747fc158b1efa929ea7ac86cfdcd2b942f3 /configure.in
parentaad44caa94778f2e62b85188e59ee90ef2008f4f (diff)
downloadwireshark-a6d3e1fa30edc0feed68079d64b524478a044149.tar.gz
Change || in an "if test" statement to "-o"
svn path=/trunk/; revision=38611
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 78a0314a1c..29c77cb54c 100644
--- a/configure.in
+++ b/configure.in
@@ -824,7 +824,7 @@ AC_ARG_ENABLE(ui-manager,
AC_HELP_STRING( [--enable-ui-manager],
[use ui-manager in Wireshark (experimental) @<:@default=no@:>@]),
enable_uimanager=$enableval,enable_uimanager=no)
-if test x$enable_uimanager = xyes || x$with_gtk3 = xyes; then
+if test x$enable_uimanager = xyes -o x$with_gtk3 = xyes; then
AC_DEFINE(MAIN_MENU_USE_UIMANAGER, 1, [Use GTK ui-manager])
fi