diff options
author | Martin Mares <mj@ucw.cz> | 1999-01-10 01:25:50 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-01-10 01:25:50 +0100 |
commit | b296730cb6b72ff84ba04fa58a6c7198f3a831e0 (patch) | |
tree | 5568e4b1ad52a5ade8c9573608a6dcfbd407706c /configure.in | |
parent | 49e7e5ee0b2848f5bf120a962e2e7eb11b86566a (diff) | |
download | bird-b296730cb6b72ff84ba04fa58a6c7198f3a831e0.tar bird-b296730cb6b72ff84ba04fa58a6c7198f3a831e0.zip |
Few last-minute bug fixes.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index e2c92c7..977b928 100644 --- a/configure.in +++ b/configure.in @@ -68,6 +68,7 @@ AC_SUBST(sysdep_dirs) AC_MSG_CHECKING([protocols]) protocols=`echo "$with_protocols" | sed 's/,/ /g'` +if test "$protocols" = no ; then protocols= ; fi for a in $protocols ; do if ! test -f $srcdir/proto/$a/Makefile ; then AC_MSG_RESULT(failed) @@ -119,7 +120,10 @@ AC_OUTPUT($makefiles) cat >&AC_FD_MSG <<EOF BIRD was configured with the following options: + Source directory: $srcdir + Object directory: $objdir System configuration: $sysdesc Debugging: $enable_debug Routing protocols: $protocols EOF +rm -f $objdir/.*-stamp |