diff options
author | Tom Tromey <tromey@redhat.com> | 2013-11-05 14:49:14 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-11-18 13:29:00 -0700 |
commit | a7c11ee135af24815f32e8cfbbb6f565f9f22a1b (patch) | |
tree | a5d2e87492fe6c98f9c126a0a485e25d3126956f /gdb/gnulib | |
parent | 0a5dd17d950c87a2c096f79a37c9a304a795c2bd (diff) | |
download | gdb-a7c11ee135af24815f32e8cfbbb6f565f9f22a1b.zip gdb-a7c11ee135af24815f32e8cfbbb6f565f9f22a1b.tar.gz gdb-a7c11ee135af24815f32e8cfbbb6f565f9f22a1b.tar.bz2 |
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 <tromey@redhat.com>
* gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
multiple lines.
Diffstat (limited to 'gdb/gnulib')
-rw-r--r-- | gdb/gnulib/update-gnulib.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gdb/gnulib/update-gnulib.sh b/gdb/gnulib/update-gnulib.sh index 0b292ba..2ad3231 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" |