* 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.
This commit is contained in:
Joel Brobecker
2007-08-23 20:33:48 +00:00
parent 01d4100f86
commit 4de6a07ed0
4 changed files with 633 additions and 288 deletions

View File

@@ -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 (\"";