aboutsummaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2009-11-18 16:27:55 -0800
committerBen Pfaff <blp@nicira.com>2009-11-23 11:34:54 -0800
commit83f6c0502c67ea117c73d3bbb91f9b9e0e81bf87 (patch)
tree078be28bb41169093dc5e35d10ba1cff0454bb3c /acinclude.m4
parent7ddda086a5aba2310d144847e078ef6eda67f38c (diff)
acinclude.m4: Fix inconsistency.
Both ; and : are valid shell commands here, but one branch of the "if" uses one and the other branch uses the other. Use the same one, for consistency's sake.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index e938e6f3..767414e6 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -222,7 +222,7 @@ AC_DEFUN([OVS_CHECK_CC_OPTION],
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,)], [ovs_cv_name[]=yes], [ovs_cv_name[]=no])
CFLAGS="$ovs_save_CFLAGS"])
if test $ovs_cv_name = yes; then
- m4_if([$2], [], [;], [$2])
+ m4_if([$2], [], [:], [$2])
else
m4_if([$3], [], [:], [$3])
fi