diff options
author | Joel Brobecker <brobecker@gnat.com> | 2007-08-23 20:33:48 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2007-08-23 20:33:48 +0000 |
commit | 4de6a07ed0610c788feb4de972a1ad0b72422387 (patch) | |
tree | 87eb639022a5218eb86b3391af63bceaad80a9af /gdb/copying.awk | |
parent | 01d4100f869abd604b90548c47e77dd5b781a7f6 (diff) | |
download | gdb-4de6a07ed0610c788feb4de972a1ad0b72422387.zip gdb-4de6a07ed0610c788feb4de972a1ad0b72422387.tar.gz gdb-4de6a07ed0610c788feb4de972a1ad0b72422387.tar.bz2 |
* Makefile.in (copying.c): Use the top-level COPYING3 as the file
that contains the GDB license.
* copying.awk: Adjust to the GPLv3 wording.
* copying.c: Regenerate.
Diffstat (limited to 'gdb/copying.awk')
-rw-r--r-- | gdb/copying.awk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/copying.awk b/gdb/copying.awk index 94e5f1b..936f435 100644 --- a/gdb/copying.awk +++ b/gdb/copying.awk @@ -19,12 +19,12 @@ BEGIN { print "{"; print " immediate_quit++;"; } -NR == 1,/^[ ]*NO WARRANTY[ ]*$/ { +NR == 1,/^[ ]*15\. Disclaimer of Warranty\.[ ]*$/ { if ($0 ~ //) { printf " printf_filtered (\"\\n\");\n"; } - else if ($0 !~ /^[ ]*NO WARRANTY[ ]*$/) + else if ($0 !~ /^[ ]*15\. Disclaimer of Warranty\.[ ]*$/) { printf " printf_filtered (\""; for (i = 1; i < NF; i++) @@ -32,7 +32,7 @@ NR == 1,/^[ ]*NO WARRANTY[ ]*$/ { printf "%s\\n\");\n", $NF; } } -/^[ ]*NO WARRANTY[ ]*$/ { +/^[ ]*15\. Disclaimer of Warranty\.[ ]*$/ { print " immediate_quit--;"; print "}"; print ""; @@ -41,7 +41,7 @@ NR == 1,/^[ ]*NO WARRANTY[ ]*$/ { print "{"; print " immediate_quit++;"; } -/^[ ]*NO WARRANTY[ ]*$/, /^[ ]*END OF TERMS AND CONDITIONS[ ]*$/{ +/^[ ]*15\. Disclaimer of Warranty\.[ ]*$/, /^[ ]*END OF TERMS AND CONDITIONS[ ]*$/{ if (! ($0 ~ /^[ ]*END OF TERMS AND CONDITIONS[ ]*$/)) { printf " printf_filtered (\""; |