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]

[RFA] Spelling fixes in configure.in


Here's a minor patch that cleans up five spelling errors in configure.in. 
Two would be seen by a user when configure is run (the other three are in 
comments).  I've only included the patch to configure.in itself -- I'll 
regenerate configure when I check this in.

OK to commit?

2001-03-23  David Smith  <dsmith@redhat.com>

	* configure.in: Corrected spelling errors.
	* configure: Regenerated.

-- 
David Smith
dsmith@redhat.com
Red Hat, Inc.
http://www.redhat.com
256.704.9222 (direct)
256.837.3839 (fax)
Index: gdb/configure.in
===================================================================
RCS file: /cvs/src/src/gdb/configure.in,v
retrieving revision 1.60
diff -c -p -u -p -r1.60 configure.in
--- gdb/configure.in	2001/03/20 02:57:42	1.60
+++ gdb/configure.in	2001/03/23 14:26:54
@@ -590,7 +590,7 @@ UIOUT_CFLAGS=
 AC_SUBST(UIOUT_CFLAGS)
 
 AC_ARG_WITH(uiout,
-[  --with-uiout          Use new uiout functions intead of *printf's],
+[  --with-uiout          Use new uiout functions instead of *printf's],
 [case "${withval}" in
   yes)  want_uiout=true ;;
   no)   if test $enable_gdbmi = yes; then
@@ -1013,7 +1013,7 @@ AC_PATH_X
 # This code just checks for a few cases where we'd like to ignore those
 # definitions, even when they're present in the '.mt' file.  These cases
 # are when --disable-sim is specified, or if the simulator directory is
-# not part of the soruce tree.
+# not part of the source tree.
 #
 AC_ARG_ENABLE(sim,
 [  --enable-sim            Link gdb with simulator],
@@ -1159,7 +1159,7 @@ nativefile=`sed -n '
 s/NAT_FILE[ 	]*=[ 	]*\([^ 	]*\)/\1/p
 ' ${host_makefile_frag}`
 # else
-# GDBserver is only useful in a "native" enviroment
+# GDBserver is only useful in a "native" environment
 # configdirs=`echo $configdirs | sed 's/gdbserver//'`
 fi
 changequote([,])
@@ -1178,14 +1178,14 @@ fi
 if test x"${GDB_MULTI_ARCH}" != x ; then
     AC_DEFINE_UNQUOTED(GDB_MULTI_ARCH, ${GDB_MULTI_ARCH})
 fi
-# Warn the user when they use an old pratice
+# Warn the user when they use an old practice
 case "${GDB_MULTI_ARCH}" in
     "" ) ;;
     0 | GDB_MULTI_ARCH_PARTIAL | 1 | GDB_MULTI_ARCH_TM | 2 )
 	AC_MSG_WARN("GDB: Target is not pure multi-arch") ;;
     GDB_MULTI_ARCH_PURE )
 	if test x"${targetfile}" != x ; then
-	    AC_MSG_WARN("GDB: Ingoring TM_FILE in ${target_makefile_frag}")
+	    AC_MSG_WARN("GDB: Ignoring TM_FILE in ${target_makefile_frag}")
 	    targetfile=""
 	fi ;;
     *)  AC_MSG_ERROR("GDB: Unknown GDB_MULTI_ARCH value ${GDB_MULTI_ARCH}");;

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