public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: "Luke T. Shumaker" <lukeshu@lukeshu.com>
To: binutils@sourceware.org, gdb-patches@sourceware.org
Cc: "Alfred M. Szmidt" <ams@gnu.org>,
	"Ralf Wildenhues" <Ralf.Wildenhues@gmx.de>,
	"Tom Tromey" <tromey@redhat.com>,
	"Luke T. Shumaker" <lukeshu@lukeshu.com>
Subject: [PATCH 1/4] readline: Fix examples/rlfe/configure.ac
Date: Thu,  6 Jun 2024 14:11:34 -0600	[thread overview]
Message-ID: <20240606201145.1747021-2-lukeshu@lukeshu.com> (raw)
In-Reply-To: <20240606201145.1747021-1-lukeshu@lukeshu.com>

It has been impossible to run `autoconf` in
`readline/readline/examples/rlfe/` ever since it was moved there from
`readline/readline/examples/rlfe/` in 6999161a2a3 (Move readline to
the readline/readline subdirectory, Tom Tromey, 2019-10-05).  The
confure.ac uses a "../"* sequence to get to the top-directory's
config/override.m4, but another "../" wasn't added when it was moved a
directory deeper.

Fix that; add another "../".  This allows `autoconf` to once again
generate the verbatim `configure` file that is already checked in.
---
 readline/readline/examples/rlfe/configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/readline/readline/examples/rlfe/configure.in b/readline/readline/examples/rlfe/configure.in
index 5c0678ab4d8..4ef9c721a06 100644
--- a/readline/readline/examples/rlfe/configure.in
+++ b/readline/readline/examples/rlfe/configure.in
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 
-m4_include([../../../config/override.m4])
+m4_include([../../../../config/override.m4])
 
 AC_INIT(rlfe.c)
 AC_CONFIG_HEADER(config.h)
-- 
2.45.1


  reply	other threads:[~2024-06-06 20:12 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-06 20:11 [PATCH 0/4] Add a ./bootstrap script to automate bundling and generating files Luke T. Shumaker
2024-06-06 20:11 ` Luke T. Shumaker [this message]
2024-06-08 18:25   ` [PATCH 1/4] readline: Fix examples/rlfe/configure.ac Maciej W. Rozycki
2024-06-08 18:28     ` Maciej W. Rozycki
2024-06-10  3:01       ` Luke T. Shumaker
2024-06-10 16:51         ` Simon Marchi
2024-06-06 20:11 ` [PATCH 2/4] Update COPYING files from gnu.org Luke T. Shumaker
2024-06-06 20:11 ` [PATCH 3/4] zlib: Remove files that should certainly not be checked in Luke T. Shumaker
2024-06-07  6:24   ` Jan Beulich
2024-06-07  7:53     ` Luke T. Shumaker
2024-06-10  3:04       ` Luke T. Shumaker
2024-06-08  0:35   ` Luke T. Shumaker
2024-06-06 20:11 ` [PATCH 4/4] Add a ./bootstrap script to automate bundling and generating files Luke T. Shumaker
2024-06-06 20:53   ` Luke T. Shumaker
2024-06-06 20:57   ` Joseph Myers
2024-06-07  8:23     ` Luke T. Shumaker
2024-06-10 19:27       ` Joseph Myers
2024-06-12  7:02         ` Luke T. Shumaker
2024-06-12 12:58           ` Tom Tromey
2024-06-06 20:55 ` [PATCH 0/4] " Luke T. Shumaker
2024-06-10  3:08 ` [PATCH v2 0/5] " Luke T. Shumaker
2024-06-10  3:08 ` [PATCH v2 1/5] readline: Fix examples/rlfe/configure.in Luke T. Shumaker
2024-06-10 22:49   ` Hans-Peter Nilsson
2024-06-10  3:08 ` [PATCH v2 2/5] Update COPYING files from gnu.org Luke T. Shumaker
2024-06-10  3:08 ` [PATCH v2 3/5] zlib: Remove files that should certainly not be checked in Luke T. Shumaker
2024-06-10  3:08 ` [PATCH v2 4/5] readline: Re-generate configure Luke T. Shumaker
2024-06-10  3:08 ` [PATCH v2 5/5] Add a ./bootstrap script to automate bundling and generating files Luke T. Shumaker

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=20240606201145.1747021-2-lukeshu@lukeshu.com \
    --to=lukeshu@lukeshu.com \
    --cc=Ralf.Wildenhues@gmx.de \
    --cc=ams@gnu.org \
    --cc=binutils@sourceware.org \
    --cc=gdb-patches@sourceware.org \
    --cc=tromey@redhat.com \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).