This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch] Fix typos in configure.in CONFIG_SRS should be CONFIG_SRCS


I found another typo that has been hanging there for a long time.
Nobody seems to use this except for lint, but I decided to fix it anyway.


ChangeLog:

	* configure.in: Fix typos.  It is CONFIG_SRCS not CONFIG_SRS.
	* configure: Regenerate.


Index: configure.in
===================================================================
RCS file: /cvs/src/src/gdb/configure.in,v
retrieving revision 1.48
diff -c -p -r1.48 configure.in
*** configure.in        2000/12/11 18:59:47     1.48
--- configure.in        2000/12/11 20:16:41
*************** case ${enable_gdbcli} in
*** 483,489 ****
      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)"
        CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_CLI_INITS)"
        ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_CLI_CFLAGS)"
        CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_CLI_ALL)"
--- 483,489 ----
      if test -d "${srcdir}/cli" ; then
        CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_CLI_OBS)"
        CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_CLI_DEPS)"
!       CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_CLI_SRCS)"
        CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_CLI_INITS)"
        ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_CLI_CFLAGS)"
        CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_CLI_ALL)"
*************** case ${enable_gdbmi} in
*** 513,519 ****
      if test -d "${srcdir}/mi" ; then
        CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_MI_OBS)"
        CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_MI_DEPS)"
!       CONFIG_SRCS="${CONFIG_SRS} \$(SUBDIR_MI_SRCS)"
        CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_MI_INITS)"
        ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_MI_CFLAGS)"
        CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_MI_ALL)"
--- 513,519 ----
      if test -d "${srcdir}/mi" ; then
        CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_MI_OBS)"
        CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_MI_DEPS)"
!       CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_MI_SRCS)"
        CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_MI_INITS)"
        ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_MI_CFLAGS)"
        CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_MI_ALL)"
*************** case ${enable_tui} in
*** 540,546 ****
      if test -d "${srcdir}/tui" ; then
        CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_TUI_OBS)"
        CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_TUI_DEPS)"
!       CONFIG_SRCS="${CONFIG_SRS} \$(SUBDIR_TUI_SRCS)"
        CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_TUI_INITS)"
        ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_TUI_CFLAGS)"
        CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_TUI_ALL)"
--- 540,546 ----
      if test -d "${srcdir}/tui" ; then
        CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_TUI_OBS)"
        CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_TUI_DEPS)"
!       CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_TUI_SRCS)"
        CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_TUI_INITS)"
        ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_TUI_CFLAGS)"
        CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_TUI_ALL)"
                                                                            
-- 
Fernando Nasser
Red Hat Canada Ltd.                     E-Mail:  fnasser@redhat.com
2323 Yonge Street, Suite #300
Toronto, Ontario   M4P 2C9

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]