git.annexia.org
/
whenjobs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
98a61f1
)
AC_CHECK_PROG sets variable to empty string when not found.
author
Richard W.M. Jones
<rjones@redhat.com>
Sat, 18 Feb 2012 17:10:28 +0000
(17:10 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Sat, 18 Feb 2012 17:10:28 +0000
(17:10 +0000)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
2b90666
..
40483be
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-86,12
+86,12
@@
fi
dnl OCaml ocamlnet RPC library + dependencies (version 3) is required.
AC_CHECK_OCAML_PKG(rpc)
-if test "x$OCAML_PKG_rpc" = "x
no
"; then
+if test "x$OCAML_PKG_rpc" = "x"; then
AC_MSG_ERROR([You must install OCaml ocamlnet library version 3])
fi
AC_CHECK_PROG(OCAMLRPCGEN,ocamlrpcgen,ocamlrpcgen)
-if test "x$OCAMLRPCGEN" = "x
no
"; then
+if test "x$OCAMLRPCGEN" = "x"; then
AC_MSG_ERROR([You must install the ocamlrpcgen program])
fi