mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 05:42:42 +08:00
copyright.py: Tell user to update gdb.texinfo and refcard.tex by hand.
gdb/ChangeLog: * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant. (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files for which a reminder to update by hand is printed.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2012-06-05 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
|
* copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
|
||||||
|
(main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
|
||||||
|
for which a reminder to update by hand is printed.
|
||||||
|
|
||||||
2012-06-04 Doug Evans <dje@google.com>
|
2012-06-04 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
* buildsym.c (make_blockvector): Add comment.
|
* buildsym.c (make_blockvector): Add comment.
|
||||||
|
@ -152,7 +152,7 @@ def main ():
|
|||||||
print
|
print
|
||||||
print "\033[31mREMINDER: The following files must be updated by hand." \
|
print "\033[31mREMINDER: The following files must be updated by hand." \
|
||||||
"\033[0m"
|
"\033[0m"
|
||||||
for filename in BY_HAND:
|
for filename in BY_HAND + MULTIPLE_COPYRIGHT_HEADERS:
|
||||||
print " ", filename
|
print " ", filename
|
||||||
|
|
||||||
############################################################################
|
############################################################################
|
||||||
@ -193,6 +193,14 @@ BY_HAND = (
|
|||||||
"gdb/testsuite/gdb.base/step-line.c",
|
"gdb/testsuite/gdb.base/step-line.c",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Files containing multiple copyright headers. This script is only
|
||||||
|
# fixing the first one it finds, so we need to finish the update
|
||||||
|
# by hand.
|
||||||
|
MULTIPLE_COPYRIGHT_HEADERS = (
|
||||||
|
"gdb/doc/gdb.texinfo",
|
||||||
|
"gdb/doc/refcard.tex",
|
||||||
|
)
|
||||||
|
|
||||||
# The list of file which have a copyright, but not head by the FSF.
|
# The list of file which have a copyright, but not head by the FSF.
|
||||||
# Filenames are relative to the root directory.
|
# Filenames are relative to the root directory.
|
||||||
NOT_FSF_LIST = (
|
NOT_FSF_LIST = (
|
||||||
|
Reference in New Issue
Block a user