diff options
author | Renato Westphal <renato@openbsd.org> | 2018-08-09 03:01:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-09 03:01:50 +0200 |
commit | 359b4722b3d397f5f0c9e510e90e3a9168929ebd (patch) | |
tree | ae421826790ac507c1dd3f03dd2bf6e8e2728d6d | |
parent | Merge pull request #2790 from lyq140/branch1 (diff) | |
parent | configure: fix help text (diff) | |
download | frr-359b4722b3d397f5f0c9e510e90e3a9168929ebd.tar.xz frr-359b4722b3d397f5f0c9e510e90e3a9168929ebd.zip |
Merge pull request #2807 from mjstapp/configure_help_fixes
configure.ac : fix help text
-rwxr-xr-x | configure.ac | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index f65b1640d..42c2963ee 100755 --- a/configure.ac +++ b/configure.ac @@ -356,7 +356,7 @@ AC_ARG_ENABLE(ospfd, AC_ARG_ENABLE(ospf6d, AS_HELP_STRING([--disable-ospf6d], [do not build ospf6d])) AC_ARG_ENABLE(ldpd, - AS_HELP_STRING([--enable-ldpd], [build ldpd])) + AS_HELP_STRING([--disable-ldpd], [do not build ldpd])) AC_ARG_ENABLE(nhrpd, AS_HELP_STRING([--disable-nhrpd], [do not build nhrpd])) AC_ARG_ENABLE(eigrpd, @@ -372,7 +372,9 @@ AC_ARG_ENABLE(pimd, AC_ARG_ENABLE(pbrd, AS_HELP_STRING([--disable-pbrd], [do not build pbrd])) AC_ARG_ENABLE(sharpd, - AS_HELP_STRING([--enable-sharpd], [do not build sharpd])) + AS_HELP_STRING([--enable-sharpd], [build sharpd])) +AC_ARG_ENABLE(staticd, + AS_HELP_STRING([--disable-staticd], [do not build staticd])) AC_ARG_ENABLE(bgp-announce, AS_HELP_STRING([--disable-bgp-announce,], [turn off BGP route announcement])) AC_ARG_ENABLE(bgp-vnc, |