Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Ambrogino Modigliani <ambrogino.modigliani@gmail.com>
To: gdb-patches@sourceware.org,	pedro_alves@portugalmail.pt
Subject: [PATCH 03/20] Fix spelling mistakes in comments in makefiles
Date: Sun, 20 Nov 2016 15:07:00 -0000	[thread overview]
Message-ID: <1479654381-20698-4-git-send-email-ambrogino.modigliani@mail.com> (raw)
In-Reply-To: <1479654381-20698-1-git-send-email-ambrogino.modigliani@mail.com>

gas/ChangeLog:

        * gas/Makefile.am: Fix spelling in comments.
        * gas/Makefile.in: Fix spelling in comments.

gdb/ChangeLog:

        * gdb/Makefile.in: Fix spelling in comments.

readline/ChangeLog:

        * readline/examples/rlfe/Makefile.in: Fix spelling in comments.

sim/mips/ChangeLog:

        * sim/mips/Makefile.in: Fix spelling in comments.
---
 gas/Makefile.am                    | 2 +-
 gas/Makefile.in                    | 2 +-
 gdb/Makefile.in                    | 6 +++---
 readline/examples/rlfe/Makefile.in | 2 +-
 sim/mips/Makefile.in               | 2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/gas/Makefile.am b/gas/Makefile.am
index cdaf9f5..d4b833f 100644
--- a/gas/Makefile.am
+++ b/gas/Makefile.am
@@ -52,7 +52,7 @@ TARG_ENV_H = $(srcdir)/config/te-@te_file@.h
 ATOF_TARG_C = $(srcdir)/config/atof-@atof@.c
 ATOF_TARG_O = atof-@atof@.@OBJEXT@
 
-# use @target_cpu_type@ for refering to configured target name
+# use @target_cpu_type@ for referring to configured target name
 IT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h
 IT_SRCS=itbl-parse.c itbl-lex-wrapper.c $(srcdir)/itbl-ops.c
 IT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h
diff --git a/gas/Makefile.in b/gas/Makefile.in
index 84f746d..c9231dc 100644
--- a/gas/Makefile.in
+++ b/gas/Makefile.in
@@ -350,7 +350,7 @@ TARG_ENV_H = $(srcdir)/config/te-@te_file@.h
 ATOF_TARG_C = $(srcdir)/config/atof-@atof@.c
 ATOF_TARG_O = atof-@atof@.@OBJEXT@
 
-# use @target_cpu_type@ for refering to configured target name
+# use @target_cpu_type@ for referring to configured target name
 IT_HDRS = itbl-parse.h $(srcdir)/itbl-ops.h
 IT_SRCS = itbl-parse.c itbl-lex-wrapper.c $(srcdir)/itbl-ops.c
 IT_DEPS = $(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index b68cf58..e94d450 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -1372,7 +1372,7 @@ test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY)
 # FIXME: cagney/2002-06-09: gdb/564: gdb/563: Force the order so that
 # the first call is to _initialize_gdbtypes (implemented by explicitly
 # putting that function's name first in the init.l-tmp file).  This is
-# a hack to ensure that all the architecture dependant global
+# a hack to ensure that all the architecture dependent global
 # builtin_type_* variables are initialized before anything else
 # (per-architecture code is called in the same order that it is
 # registered).  The ``correct fix'' is to have all the builtin types
@@ -1825,7 +1825,7 @@ ALLDEPFILES = \
 # errors.  It turns out that that is the least of monitor.c's
 # problems.  The function print_vsprintf appears to be using
 # va_arg(long) to extract CORE_ADDR parameters - something that
-# definitly will not work.  "monitor.c" needs to be rewritten so that
+# definitely will not work.  "monitor.c" needs to be rewritten so that
 # it doesn't use format strings and instead uses callbacks.
 monitor.o: $(srcdir)/monitor.c
 	$(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_FORMAT) \
@@ -1914,7 +1914,7 @@ clean-po:
 # rule has no dependencies and always regenerates gdb.pot.  This is
 # relatively harmless since the .po files do not directly depend on
 # it.  The .pot file is left in the build directory.  Since GDB's
-# Makefile lacks a cannonical list of sources (missing xm, tm and nm
+# Makefile lacks a canonical list of sources (missing xm, tm and nm
 # files) force this rule.
 $(PACKAGE).pot: po/$(PACKAGE).pot
 po/$(PACKAGE).pot: force
diff --git a/readline/examples/rlfe/Makefile.in b/readline/examples/rlfe/Makefile.in
index 7d6fd53..f60c504 100644
--- a/readline/examples/rlfe/Makefile.in
+++ b/readline/examples/rlfe/Makefile.in
@@ -1,7 +1,7 @@
 #
 # Makefile template for rlfe 
 #
-# See machine dependant config.h for more configuration options.
+# See machine dependent config.h for more configuration options.
 #
 
 srcdir = @srcdir@
diff --git a/sim/mips/Makefile.in b/sim/mips/Makefile.in
index 7f1c916..9bb272a 100644
--- a/sim/mips/Makefile.in
+++ b/sim/mips/Makefile.in
@@ -119,7 +119,7 @@ IGEN_INCLUDE=\
 	$(srcdir)/mips3264r2.igen \
 
 # NB:	Since these can be built by a number of generators, care
-#	must be taken to ensure that they are only dependant on
+#	must be taken to ensure that they are only dependent on
 #	one of those generators.
 BUILT_SRC_FROM_GEN = \
 	itable.h \
-- 
2.7.4


  parent reply	other threads:[~2016-11-20 15:07 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-20 15:06 [PATCH 00/20] Fix spelling mistakes in comments Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 08/20] Fix spelling mistakes in comments in XML files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 14/20] Fix spelling mistakes in comments in .inc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 11/20] Fix spelling mistakes in comments in .em files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 17/20] Fix spelling mistakes in comments in .opc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 10/20] Fix spelling mistakes in comments in .def files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 19/20] Fix spelling mistakes in comments in .tbl files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 16/20] Fix spelling mistakes in comments in .m4 files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 18/20] Fix spelling mistakes in comments in .sc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 12/20] Fix spelling mistakes in comments in .igen files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 13/20] Fix spelling mistakes in comments in .in files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 07/20] Fix spelling mistakes in comments in Expect scripts Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 20/20] Fix spelling mistakes in comments in .y files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 02/20] Fix spelling mistakes in comments in configure scripts Ambrogino Modigliani
2016-11-20 16:36   ` Simon Marchi
2016-11-20 15:07 ` [PATCH 15/20] Fix spelling mistakes in comments in .l files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 05/20] Fix spelling mistakes in comments in Ada source files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 09/20] Fix spelling mistakes in comments in .cpu files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 06/20] Fix spelling mistakes in comments in Assembler files Ambrogino Modigliani
2016-11-20 16:59   ` Simon Marchi
2016-11-20 15:07 ` Ambrogino Modigliani [this message]
2016-11-20 16:53   ` [PATCH 03/20] Fix spelling mistakes in comments in makefiles Simon Marchi
2016-11-20 15:07 ` [PATCH 04/20] Fix spelling mistakes in comments in shell scripts Ambrogino Modigliani
2016-11-20 17:30 ` [PATCH 00/20] Fix spelling mistakes in comments Simon Marchi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1479654381-20698-4-git-send-email-ambrogino.modigliani@mail.com \
    --to=ambrogino.modigliani@gmail.com \
    --cc=gdb-patches@sourceware.org \
    --cc=pedro_alves@portugalmail.pt \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox