Prevent users from setting JOBSERIAL and from setting variables with invalid names.
[whenjobs.git] / configure.ac
index 2b90666..4bd2e41 100644 (file)
@@ -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" = "xno"; 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" = "xno"; then
+if test "x$OCAMLRPCGEN" = "x"; then
     AC_MSG_ERROR([You must install the ocamlrpcgen program])
 fi
 
@@ -106,6 +106,7 @@ AC_CONFIG_FILES([Makefile
                  daemon/Makefile
                  lib/config.ml
                  lib/Makefile
+                 tests/jobs/Makefile
                  tests/parsing/Makefile
                  tools/Makefile
                  whenjobs.spec])