diff options
author | Fernando Nasser <fnasser@redhat.com> | 2000-12-11 18:59:47 +0000 |
---|---|---|
committer | Fernando Nasser <fnasser@redhat.com> | 2000-12-11 18:59:47 +0000 |
commit | 6bad8db2dca5644ea4530e1aafc5e247333cbeb1 (patch) | |
tree | 8d5be95c47f8475bbe2a52055fb9a9c52002cb1f /gdb/configure.in | |
parent | ffb34d9aac3dc2fa3dc1808e4b07de896ee60318 (diff) | |
download | gdb-6bad8db2dca5644ea4530e1aafc5e247333cbeb1.zip gdb-6bad8db2dca5644ea4530e1aafc5e247333cbeb1.tar.gz gdb-6bad8db2dca5644ea4530e1aafc5e247333cbeb1.tar.bz2 |
2000-12-11 Fernando Nasser <fnasser@redhat.com>
* configure.in: Fix a couple of typos in the handling of the
enable_gdbcli option. Make it check enableval for the result
of AC_ARG_ENABLE.
* configure: Regenerate.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index eb5a11f..04b948e 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -466,21 +466,21 @@ dnl Handle CLI sub-directory configury. AC_ARG_ENABLE(gdbcli, [ --enable-gdbcli Enable GDB-CLI interface], [ - case "${enable_gdbcli}" in - yes) ;; - "") enable_gdbcli=yes ;; + case "${enableval}" in + yes) enable_gdbcli=yes ;; + "") enable_gdbcli=yes ;; no) AC_MSG_ERROR(The CLI cannot be disabled yet) ;; *) - AC_MSG_ERROR(Bad value for --enable-gdbmi: ${enableval}) + AC_MSG_ERROR(Bad value for --enable-gdbcli: ${enableval}) ;; esac ], [enable_gdbcli=yes]) case ${enable_gdbcli} in "yes" ) - if test -d "${srcdir}/mi" ; then + if test -d "${srcdir}/cli" ; then CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_CLI_OBS)" CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_CLI_DEPS)" CONFIG_SRCS="${CONFIG_SRS} \$(SUBDIR_CLI_SRCS)" |