From a7c11ee135af24815f32e8cfbbb6f565f9f22a1b Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 5 Nov 2013 14:49:14 -0700 Subject: [PATCH] change how list of modules is computed While adding modules I found that the current approach of listing all the modules on one line made it harder to experiment -- any conflicts from git were a pain to resolve. This patch splits the list of modules so that there is one module per line. 2013-11-18 Tom Tromey * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into multiple lines. --- gdb/ChangeLog | 5 +++++ gdb/gnulib/update-gnulib.sh | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2042e49b7f..2d1930d698 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-11-18 Tom Tromey + + * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into + multiple lines. + 2013-11-18 Jose E. Marchesi * sparc-tdep.c (sparc_is_annulled_branch_insn): New function. diff --git a/gdb/gnulib/update-gnulib.sh b/gdb/gnulib/update-gnulib.sh index 0b292ba2c0..2ad323118f 100644 --- a/gdb/gnulib/update-gnulib.sh +++ b/gdb/gnulib/update-gnulib.sh @@ -29,7 +29,15 @@ # regenerate the various scripts and Makefiles are on the PATH. # The list of gnulib modules we are importing in GDB. -IMPORTED_GNULIB_MODULES="fnmatch-gnu frexpl inttypes memmem update-copyright unistd pathmax" +IMPORTED_GNULIB_MODULES="\ + fnmatch-gnu \ + frexpl \ + inttypes \ + memmem \ + update-copyright \ + unistd \ + pathmax \ +" # The gnulib commit ID to use for the update. GNULIB_COMMIT_SHA1="8d5bd1402003bd0153984b138735adf537d960b0" -- 2.34.1