From: Simon Marchi <simon.marchi@polymtl.ca>
To: Ambrogino Modigliani <ambrogino.modigliani@gmail.com>
Cc: gdb-patches@sourceware.org, pedro_alves@portugalmail.pt
Subject: Re: [PATCH 02/20] Fix spelling mistakes in comments in configure scripts
Date: Sun, 20 Nov 2016 16:36:00 -0000 [thread overview]
Message-ID: <287b26d00ecff632374d7c291e29367a@polymtl.ca> (raw)
In-Reply-To: <1479654381-20698-3-git-send-email-ambrogino.modigliani@mail.com>
Hi Ambrogino,
On 2016-11-20 10:06, Ambrogino Modigliani wrote:
> All changes are limited to comments, and no run-time behavior is
> affected.
>
> bfd/ChangeLog:
>
> * bfd/configure: Fix spelling in comments.
> * bfd/configure.ac: Fix spelling in comments.
>
> binutils/ChangeLog:
>
> * binutils/configure: Fix spelling in comments.
>
> gdb/ChangeLog:
>
> * gdb/configure: Fix spelling in comments.
> * gdb/configure.ac: Fix spelling in comments.
>
> gas/ChangeLog:
>
> * gas/configure: Fix spelling in comments.
>
> gold/ChangeLog:
>
> * gold/configure: Fix spelling in comments.
>
> gprof/ChangeLog:
>
> * gprof/configure: Fix spelling in comments.
>
> ld/ChangeLog:
>
> * ld/configure: Fix spelling in comments.
>
> libiberty/ChangeLog:
>
> * libiberty/configure: Fix spelling in comments.
> * libiberty/configure.ac: Fix spelling in comments.
>
> opcodes/ChangeLog:
>
> * opcodes/configure: Fix spelling in comments.
>
> sim/mips/ChangeLog:
>
> * sim/mips/configure: Fix spelling in comments.
> * sim/mips/configure.ac: Fix spelling in comments.
> ---
> bfd/configure | 4 ++--
> bfd/configure.ac | 2 +-
> binutils/configure | 2 +-
> gas/configure | 2 +-
> gdb/configure | 2 +-
> gdb/configure.ac | 2 +-
> gold/configure | 2 +-
> gprof/configure | 2 +-
> ld/configure | 2 +-
> libiberty/configure | 10 +++++-----
> libiberty/configure.ac | 10 +++++-----
> opcodes/configure | 2 +-
> sim/mips/configure | 4 ++--
> sim/mips/configure.ac | 4 ++--
> 14 files changed, 25 insertions(+), 25 deletions(-)
>
> diff --git a/bfd/configure b/bfd/configure
> index 68db12f..ab239fe 100755
> --- a/bfd/configure
> +++ b/bfd/configure
> @@ -12291,7 +12291,7 @@ fi
> rm -f conftest*
>
>
> -# Verify CC_FOR_BUILD to be compatible with waring flags
> +# Verify CC_FOR_BUILD to be compatible with warning flags
This line of code (which appears multiple times) actually comes from
bfd/warning.m4, which you fix in a later patch. Since "configure" files
are generated from "configure.ac" files (and indirectly from other
input files such as bfd/warning.m4), they shouldn't be edited directly.
Usually, you edit "configure.ac", and run autoconf (version 2.64) to
re-generate "configure":
$ ... edit configure.ac ...
$ autoconf-2.64
$ git add configure configure.ac
Your ChangeLog entries can then look like:
* configure.ac: Fix spelling in comments.
* configure: Re-generate.
I suggest that you only manually edit "configure.ac" files in this
patch, and include the relevant changes in "configure" files (by running
autoconf-2.64). Then, in your patch about m4 files, you can include the
changes to "configure" files caused by that patch (found by re-running
autoconf-2.64 at that point). autoconf-2.64 is packaged by many
distributions (such as Debian's package autoconf2.64), but otherwise
it's easy to build from source.
Thanks,
Simon
next prev parent reply other threads:[~2016-11-20 16:36 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 04/20] Fix spelling mistakes in comments in shell scripts 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 ` [PATCH 03/20] Fix spelling mistakes in comments in makefiles Ambrogino Modigliani
2016-11-20 16:53 ` 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 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 [this message]
2016-11-20 15:07 ` [PATCH 16/20] Fix spelling mistakes in comments in .m4 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 18/20] Fix spelling mistakes in comments in .sc 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 13/20] Fix spelling mistakes in comments in .in 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 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 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=287b26d00ecff632374d7c291e29367a@polymtl.ca \
--to=simon.marchi@polymtl.ca \
--cc=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