diff options
author | paul <paul> | 2003-06-06 00:30:35 +0000 |
---|---|---|
committer | paul <paul> | 2003-06-06 00:30:35 +0000 |
commit | ecc3786b5832e3184a729862ddd5688ce32fd457 (patch) | |
tree | 025bda7bc0900d418e12eb05d8ed38ceeb547003 /configure.ac | |
parent | a8659bd7daff7b477f51efb3cd9e312e50dfe3a7 (diff) | |
download | quagga-ecc3786b5832e3184a729862ddd5688ce32fd457.tar.bz2 quagga-ecc3786b5832e3184a729862ddd5688ce32fd457.tar.xz |
2003-06-06 Paul Jakma <paul@dishone.st
* Fix up case of --enable-vty-group not being specified
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 290d8331..3f19601e 100755 --- a/configure.ac +++ b/configure.ac @@ -158,13 +158,10 @@ fi AC_DEFINE_UNQUOTED(ZEBRA_GROUP, "${enable_group}", Zebra Group) if test x"${enable_vty_group}" = x"yes" ; then - AC_MSG_ERROR([--enable-vty-group requires a group as argument]) + AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes]) fi -if test "${enable_vty_group}" = ""; then - AC_MSG_ERROR([--enable-vty-group requires a group as argument]) -fi -if test x"${enable_vty_group}" != x"no"; then - if test "${enable_vty_group}" != ""; then +if test x"${enable_vty_group}" != x""; then + if test x"${enable_vty_group}" != x"no"; then AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group) fi fi @@ -1023,4 +1020,7 @@ compiler : ${CC} compiler flags : ${CFLAGS} linker flags : ${LDFLAGS} ${LIBS} state file directory : ${zebra_statedir} +user to run as : ${enable_user} +group to run as : ${enable_group} +group for vty sockets : ${enable_vty_group} " |