]> gcc.gnu.org Git - gcc.git/commitdiff
Update copyright years in c++tools
authorJakub Jelinek <jakub@redhat.com>
Tue, 25 May 2021 09:11:02 +0000 (11:11 +0200)
committerJakub Jelinek <jakub@redhat.com>
Tue, 25 May 2021 09:12:03 +0000 (11:12 +0200)
While looking at PR100731, I have noticed the copyright years are 2020-ish
only.  This patch adds it to update-copyright.py and updates those.

2021-05-25  Jakub Jelinek  <jakub@redhat.com>

contrib/
* update-copyright.py: Add c++tools.
c++tools/
* Makefile.in: Update copyright year.
* configure.ac: Likewise.
* resolver.cc: Likewise.
* resolver.h: Likewise.
* server.cc: Likewise.
(print_version): Update copyright notice date.

c++tools/Makefile.in
c++tools/configure.ac
c++tools/resolver.cc
c++tools/resolver.h
c++tools/server.cc
contrib/update-copyright.py

index afc87d07ad97df55ee4b52650223b9e9825ba05e..83a6ae54c296afe00ec56e02df2ab0425708538b 100644 (file)
@@ -1,5 +1,5 @@
 # Makefile for c++tools
-#   Copyright 2020 Free Software Foundation, Inc.
+#   Copyright (C) 2020-2021 Free Software Foundation, Inc.
 #
 # This file is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index 5771f2ace687fe22655b9a1d9bd0803cf351f2a3..1b08f7575b6cde7b6a8e77127ebb3ee6aba5f483 100644 (file)
@@ -1,5 +1,5 @@
 # Configure script for c++tools
-#   Copyright (C) 2020 Free Software Foundation, Inc.
+#   Copyright (C) 2020-2021 Free Software Foundation, Inc.
 #   Written by Nathan Sidwell <nathan@acm.org> while at FaceBook
 #
 # This file is free software; you can redistribute it and/or modify it
index ef08de530721aeffc1fc605b51ed2b69e6202e95..edd4624b1212c812a842ba62f35d59cdfa004f3b 100644 (file)
@@ -1,5 +1,5 @@
 /* C++ modules.  Experimental! -*- c++ -*-
-   Copyright (C) 2017-2020 Free Software Foundation, Inc.
+   Copyright (C) 2017-2021 Free Software Foundation, Inc.
    Written by Nathan Sidwell <nathan@acm.org> while at FaceBook
 
    This file is part of GCC.
index a9547bf6994002351219f355534878a8360be5ef..b2f4381b4fa8162278a540fd1f415f6332134d8e 100644 (file)
@@ -1,5 +1,5 @@
 /* C++ modules.  Experimental! -*- c++ -*-
-   Copyright (C) 2017-2020 Free Software Foundation, Inc.
+   Copyright (C) 2017-2021 Free Software Foundation, Inc.
    Written by Nathan Sidwell <nathan@acm.org> while at FaceBook
 
    This file is part of GCC.
index 21c7d468aa0294e0c4b5c1f47de84cfd6328e60e..709955e7e2b1f4d3452f2187f80eb5152d7ff5bc 100644 (file)
@@ -1,5 +1,5 @@
 /* C++ modules.  Experimental!
-   Copyright (C) 2018-2020 Free Software Foundation, Inc.
+   Copyright (C) 2018-2021 Free Software Foundation, Inc.
    Written by Nathan Sidwell <nathan@acm.org> while at FaceBook
 
    This file is part of GCC.
@@ -290,7 +290,7 @@ static void ATTRIBUTE_NORETURN
 print_version (void)
 {
   fnotice (stdout, "%s %s%s\n", progname, pkgversion_string, version_string);
-  fprintf (stdout, "Copyright %s 2018-2020 Free Software Foundation, Inc.\n",
+  fprintf (stdout, "Copyright %s 2018-2021 Free Software Foundation, Inc.\n",
           ("(C)"));
   fnotice (stdout,
           ("This is free software; see the source for copying conditions.\n"
index 83c761acc558eb6f555f2ef4eb8addcdbbdec3e8..2b2bb11d2e617d60eb84a20be08f6543c47db384 100755 (executable)
@@ -735,6 +735,7 @@ class GCCCmdLine (CmdLine):
 
         self.add_dir ('.', TopLevelFilter())
         # boehm-gc is imported from upstream.
+        self.add_dir ('c++tools')
         self.add_dir ('config', ConfigFilter())
         # contrib isn't really part of GCC.
         self.add_dir ('fixincludes')
@@ -770,6 +771,7 @@ class GCCCmdLine (CmdLine):
         # zlib is imported from upstream.
 
         self.default_dirs = [
+            'c++tools',
             'gcc',
             'include',
             'libada',
This page took 0.069935 seconds and 5 git commands to generate.