This is the mail archive of the gdb-patches@sourceware.org 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]
Other format: [Raw text]

[commit] Add call to autoheader in update-gnulib.sh.


Hello,

I noticed that update-gnulib.sh was not calling autoheader after
having called autoconf.  Fixed thusly.

gdb/ChangeLog:

        * gnulib/update-gnulib.sh: Add call to autoheader.

Tested on x86_64-linux by re-running the script, and verifying
that it introduces no change (although it could have). GDB
rebuilt from scratch.

Checked in.

---
 gdb/ChangeLog               |    4 ++++
 gdb/gnulib/update-gnulib.sh |    1 +
 2 files changed, 5 insertions(+)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6910815..00e0362 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2012-12-18  Joel Brobecker  <brobecker@adacore.com>
+
+	* gnulib/update-gnulib.sh: Add call to autoheader.
+
 2012-12-17  Tom Tromey  <tromey@redhat.com>
 
 	* top.c (xgdb_verbose): Remove.
diff --git a/gdb/gnulib/update-gnulib.sh b/gdb/gnulib/update-gnulib.sh
index 1bab512..87218ca 100644
--- a/gdb/gnulib/update-gnulib.sh
+++ b/gdb/gnulib/update-gnulib.sh
@@ -110,6 +110,7 @@ fi
 # Regenerate all necessary files...
 aclocal -Iimport/m4 &&
 autoconf &&
+autoheader &&
 automake
 if [ $? -ne 0 ]; then
    echo "Error: Failed to regenerate Makefiles and configure scripts."
-- 
1.7.10.4


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