change how list of modules is computed
authorTom Tromey <tromey@redhat.com>
Tue, 5 Nov 2013 21:49:14 +0000 (14:49 -0700)
committerTom Tromey <tromey@redhat.com>
Mon, 18 Nov 2013 20:29:00 +0000 (13:29 -0700)
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  <tromey@redhat.com>

* gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
multiple lines.

gdb/ChangeLog
gdb/gnulib/update-gnulib.sh

index 2042e49b7f95be215d05e3990ab93c6a99e4a355..2d1930d698e0c08a0fde21c807360992fb6e0c51 100644 (file)
@@ -1,3 +1,8 @@
+2013-11-18  Tom Tromey  <tromey@redhat.com>
+
+       * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
+       multiple lines.
+
 2013-11-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
 
        * sparc-tdep.c (sparc_is_annulled_branch_insn): New function.
index 0b292ba2c076e14238efb07f49c7bc2b286df69a..2ad323118fca0f809af92e8fd266941448fef402 100644 (file)
 #     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"
This page took 0.032254 seconds and 4 git commands to generate.