diff options
author | Dave Brolley <brolley@redhat.com> | 2009-05-11 14:26:53 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-05-11 14:26:53 -0400 |
commit | d450a957821659ef1d50ff59378c72df2986b21a (patch) | |
tree | b335f06ff7bc6ac0edf14234a0d65ebca04ec253 /configure.ac | |
parent | 5896cd059949413cf56678d7a7fa6c0788f576b5 (diff) | |
download | systemtap-steved-d450a957821659ef1d50ff59378c72df2986b21a.tar.gz systemtap-steved-d450a957821659ef1d50ff59378c72df2986b21a.tar.xz systemtap-steved-d450a957821659ef1d50ff59378c72df2986b21a.zip |
Correct typo in BUILD_SERVER test in configure.ac.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f3135287..198d77f1 100644 --- a/configure.ac +++ b/configure.ac @@ -260,7 +260,7 @@ if test "x${have_nss_includes}${have_nss_libs}${have_certutil}" != "xyesyesyes"; else AC_DEFINE([HAVE_NSS], [1], [Define to 1 if you have the nss libraries.]) fi -AM_CONDITIONAL([BUILD_SERVER], [test "x${have_nss_includes}${have_nss_libs}${javer_certutil}" == "xyesyesyes" -a "$enable_server" != "no"]) +AM_CONDITIONAL([BUILD_SERVER], [test "x${have_nss_includes}${have_nss_libs}${have_certutil}" == "xyesyesyes" -a "$enable_server" != "no"]) AM_CONDITIONAL([HAVE_NSS], [test "x${have_nss_includes}${have_nss_libs}${have_certutil}" == "xyesyesyes"]) dnl Handle the optional grapher |