From: Joel Rosdahl Date: Sun, 28 Sep 2025 17:26:58 +0000 (+0200) Subject: docs: Rename documentation files to lowercase X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c55a6acc7e52cbf32dbcadc7acc5c9423efffe19;p=thirdparty%2Fccache.git docs: Rename documentation files to lowercase Exception: Doc files at the top level keep their uppercase names by convention. --- diff --git a/LICENSE.adoc b/LICENSE.adoc index b904aa17..b8c14187 100644 --- a/LICENSE.adoc +++ b/LICENSE.adoc @@ -26,7 +26,7 @@ https://www.gnu.org/licenses/gpl-3.0.html. == Copyright and authors Ccache is a collective work with contributions from many people, listed in -AUTHORS.adoc and at https://ccache.dev/credits.html. Subsequent additions by +doc/authors.adoc and at https://ccache.dev/credits.html. Subsequent additions by contributing authors are implicitly licensed to the public under the same terms (GNU GPL version 3 or later), but the contributing authors retain copyrights on their portions of the work. diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index d77cea67..e727f92f 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -46,9 +46,9 @@ else() # HTML documentation # generate_doc(html LICENSE.adoc LICENSE.html) - generate_doc(html doc/AUTHORS.adoc AUTHORS.html) - generate_doc(html doc/MANUAL.adoc MANUAL.html) - generate_doc(html doc/NEWS.adoc NEWS.html) + generate_doc(html doc/authors.adoc AUTHORS.html) + generate_doc(html doc/manual.adoc MANUAL.html) + generate_doc(html doc/news.adoc NEWS.html) add_custom_target(doc-html DEPENDS "${html_doc_files}") if(PANDOC_EXE) @@ -56,9 +56,9 @@ else() # Markdown documentation # generate_doc(markdown LICENSE.adoc LICENSE.md) - generate_doc(markdown doc/AUTHORS.adoc AUTHORS.md) - generate_doc(markdown doc/MANUAL.adoc MANUAL.md) - generate_doc(markdown doc/NEWS.adoc NEWS.md) + generate_doc(markdown doc/authors.adoc AUTHORS.md) + generate_doc(markdown doc/manual.adoc MANUAL.md) + generate_doc(markdown doc/news.adoc NEWS.md) add_custom_target(doc-markdown DEPENDS "${markdown_doc_files}") else() message(WARNING "Could not find pandoc; markdown documentation will not be generated") @@ -67,7 +67,7 @@ else() # # Man page # - generate_doc(manpage doc/MANUAL.adoc ccache.1) + generate_doc(manpage doc/manual.adoc ccache.1) add_custom_target(doc-man-page DEPENDS ccache.1) add_custom_target(doc ALL DEPENDS doc-html doc-man-page) diff --git a/doc/AUTHORS.adoc b/doc/authors.adoc similarity index 100% rename from doc/AUTHORS.adoc rename to doc/authors.adoc diff --git a/doc/INSTALL.md b/doc/install.md similarity index 100% rename from doc/INSTALL.md rename to doc/install.md diff --git a/doc/MANUAL.adoc b/doc/manual.adoc similarity index 100% rename from doc/MANUAL.adoc rename to doc/manual.adoc diff --git a/doc/NEWS.adoc b/doc/news.adoc similarity index 100% rename from doc/NEWS.adoc rename to doc/news.adoc diff --git a/misc/performance b/misc/performance index 33aff891..abb48651 100755 --- a/misc/performance +++ b/misc/performance @@ -2,7 +2,7 @@ # # Copyright (C) 2010-2025 Joel Rosdahl and other contributors # -# See doc/AUTHORS.adoc for a complete list of contributors. +# See doc/authors.adoc for a complete list of contributors. # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/misc/update-authors b/misc/update-authors index 6d7062a0..c54209fe 100755 --- a/misc/update-authors +++ b/misc/update-authors @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -"""Update doc/AUTHORS.adoc with Git commit authors. +"""Update doc/authors.adoc with Git commit authors. Authors include those specified by "Co-authored-by:" in commit messages. """ @@ -34,7 +34,7 @@ ANONYMOUS = { "vsplesk", } -AUTHORS_ADOC = Path(__file__).parents[1] / "doc/AUTHORS.adoc" +AUTHORS_ADOC = Path(__file__).parents[1] / "doc/authors.adoc" def git(*args): diff --git a/src/ccache/argprocessing.cpp b/src/ccache/argprocessing.cpp index 980b2b54..76479fb5 100644 --- a/src/ccache/argprocessing.cpp +++ b/src/ccache/argprocessing.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/argprocessing.hpp b/src/ccache/argprocessing.hpp index bd1b1f84..21847ffc 100644 --- a/src/ccache/argprocessing.hpp +++ b/src/ccache/argprocessing.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/argsinfo.hpp b/src/ccache/argsinfo.hpp index c433b3fc..a1ba647b 100644 --- a/src/ccache/argsinfo.hpp +++ b/src/ccache/argsinfo.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/ccache.cpp b/src/ccache/ccache.cpp index b6cf444a..b6723321 100644 --- a/src/ccache/ccache.cpp +++ b/src/ccache/ccache.cpp @@ -1,7 +1,7 @@ // Copyright (C) 2002-2007 Andrew Tridgell // Copyright (C) 2009-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/ccache.hpp b/src/ccache/ccache.hpp index eda52ddd..f2423ada 100644 --- a/src/ccache/ccache.hpp +++ b/src/ccache/ccache.hpp @@ -1,7 +1,7 @@ // Copyright (C) 2002-2007 Andrew Tridgell // Copyright (C) 2009-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/compopt.cpp b/src/ccache/compopt.cpp index 9ec8e68b..81c42170 100644 --- a/src/ccache/compopt.cpp +++ b/src/ccache/compopt.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/compopt.hpp b/src/ccache/compopt.hpp index 99ce2566..163d3090 100644 --- a/src/ccache/compopt.hpp +++ b/src/ccache/compopt.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/config.cpp b/src/ccache/config.cpp index a4f67d8c..e4d9bf26 100644 --- a/src/ccache/config.cpp +++ b/src/ccache/config.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/config.hpp b/src/ccache/config.hpp index 4910a7c7..f1f09bf0 100644 --- a/src/ccache/config.hpp +++ b/src/ccache/config.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/context.cpp b/src/ccache/context.cpp index 33b9b577..64ada878 100644 --- a/src/ccache/context.cpp +++ b/src/ccache/context.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/context.hpp b/src/ccache/context.hpp index 6732c68d..e8b688df 100644 --- a/src/ccache/context.hpp +++ b/src/ccache/context.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/atomicfile.cpp b/src/ccache/core/atomicfile.cpp index 6660987e..5c402c46 100644 --- a/src/ccache/core/atomicfile.cpp +++ b/src/ccache/core/atomicfile.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/atomicfile.hpp b/src/ccache/core/atomicfile.hpp index 53563d46..d036887d 100644 --- a/src/ccache/core/atomicfile.hpp +++ b/src/ccache/core/atomicfile.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2023 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/cacheentry.cpp b/src/ccache/core/cacheentry.cpp index c64cdca1..224e0719 100644 --- a/src/ccache/core/cacheentry.cpp +++ b/src/ccache/core/cacheentry.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/cacheentry.hpp b/src/ccache/core/cacheentry.hpp index e429cf0f..1eb49f97 100644 --- a/src/ccache/core/cacheentry.hpp +++ b/src/ccache/core/cacheentry.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/cacheentrydatareader.hpp b/src/ccache/core/cacheentrydatareader.hpp index 2fc12c60..077c4150 100644 --- a/src/ccache/core/cacheentrydatareader.hpp +++ b/src/ccache/core/cacheentrydatareader.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/cacheentrydatawriter.hpp b/src/ccache/core/cacheentrydatawriter.hpp index df44d9bc..712a9575 100644 --- a/src/ccache/core/cacheentrydatawriter.hpp +++ b/src/ccache/core/cacheentrydatawriter.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/common.cpp b/src/ccache/core/common.cpp index f35eeea8..136aaa2f 100644 --- a/src/ccache/core/common.cpp +++ b/src/ccache/core/common.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/common.hpp b/src/ccache/core/common.hpp index ff7c1ff3..af7bce38 100644 --- a/src/ccache/core/common.hpp +++ b/src/ccache/core/common.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/exceptions.hpp b/src/ccache/core/exceptions.hpp index 2fc4dee4..f0c056cf 100644 --- a/src/ccache/core/exceptions.hpp +++ b/src/ccache/core/exceptions.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/filerecompressor.cpp b/src/ccache/core/filerecompressor.cpp index 769d539d..9306f5e9 100644 --- a/src/ccache/core/filerecompressor.cpp +++ b/src/ccache/core/filerecompressor.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/filerecompressor.hpp b/src/ccache/core/filerecompressor.hpp index b19c2a25..42e9314a 100644 --- a/src/ccache/core/filerecompressor.hpp +++ b/src/ccache/core/filerecompressor.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/mainoptions.cpp b/src/ccache/core/mainoptions.cpp index ec235215..647606a4 100644 --- a/src/ccache/core/mainoptions.cpp +++ b/src/ccache/core/mainoptions.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/mainoptions.hpp b/src/ccache/core/mainoptions.hpp index 2cf84cd8..3f8ee511 100644 --- a/src/ccache/core/mainoptions.hpp +++ b/src/ccache/core/mainoptions.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2022 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/manifest.cpp b/src/ccache/core/manifest.cpp index ada2b74d..2a3a0af5 100644 --- a/src/ccache/core/manifest.cpp +++ b/src/ccache/core/manifest.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2009-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/manifest.hpp b/src/ccache/core/manifest.hpp index eae79089..b45b3919 100644 --- a/src/ccache/core/manifest.hpp +++ b/src/ccache/core/manifest.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2009-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/msvcshowincludesoutput.cpp b/src/ccache/core/msvcshowincludesoutput.cpp index 9ec01fe4..8bc8798b 100644 --- a/src/ccache/core/msvcshowincludesoutput.cpp +++ b/src/ccache/core/msvcshowincludesoutput.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/msvcshowincludesoutput.hpp b/src/ccache/core/msvcshowincludesoutput.hpp index 0b7bc08f..db703f03 100644 --- a/src/ccache/core/msvcshowincludesoutput.hpp +++ b/src/ccache/core/msvcshowincludesoutput.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/result.cpp b/src/ccache/core/result.cpp index 344f0bf9..41abfd37 100644 --- a/src/ccache/core/result.cpp +++ b/src/ccache/core/result.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/result.hpp b/src/ccache/core/result.hpp index 9e577da1..7da388c5 100644 --- a/src/ccache/core/result.hpp +++ b/src/ccache/core/result.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/resultextractor.cpp b/src/ccache/core/resultextractor.cpp index afb71627..629546fa 100644 --- a/src/ccache/core/resultextractor.cpp +++ b/src/ccache/core/resultextractor.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/resultextractor.hpp b/src/ccache/core/resultextractor.hpp index f99e8972..0b5ff343 100644 --- a/src/ccache/core/resultextractor.hpp +++ b/src/ccache/core/resultextractor.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/resultinspector.cpp b/src/ccache/core/resultinspector.cpp index f636c869..8ac5ab46 100644 --- a/src/ccache/core/resultinspector.cpp +++ b/src/ccache/core/resultinspector.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/resultinspector.hpp b/src/ccache/core/resultinspector.hpp index da764a1f..7307c19a 100644 --- a/src/ccache/core/resultinspector.hpp +++ b/src/ccache/core/resultinspector.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/resultretriever.cpp b/src/ccache/core/resultretriever.cpp index 86632483..bc1da47c 100644 --- a/src/ccache/core/resultretriever.cpp +++ b/src/ccache/core/resultretriever.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/resultretriever.hpp b/src/ccache/core/resultretriever.hpp index 1c24efb4..cf04a215 100644 --- a/src/ccache/core/resultretriever.hpp +++ b/src/ccache/core/resultretriever.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/serializer.hpp b/src/ccache/core/serializer.hpp index d324fdfc..340c11bf 100644 --- a/src/ccache/core/serializer.hpp +++ b/src/ccache/core/serializer.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/sloppiness.hpp b/src/ccache/core/sloppiness.hpp index b1611378..870c1647 100644 --- a/src/ccache/core/sloppiness.hpp +++ b/src/ccache/core/sloppiness.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/statistic.hpp b/src/ccache/core/statistic.hpp index 6ec2dd69..0b08e704 100644 --- a/src/ccache/core/statistic.hpp +++ b/src/ccache/core/statistic.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/statistics.cpp b/src/ccache/core/statistics.cpp index 80082b75..6324f070 100644 --- a/src/ccache/core/statistics.cpp +++ b/src/ccache/core/statistics.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/statistics.hpp b/src/ccache/core/statistics.hpp index 33747d08..05a7fd56 100644 --- a/src/ccache/core/statistics.hpp +++ b/src/ccache/core/statistics.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/statisticscounters.cpp b/src/ccache/core/statisticscounters.cpp index 6c49996a..d63f91f4 100644 --- a/src/ccache/core/statisticscounters.cpp +++ b/src/ccache/core/statisticscounters.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/statisticscounters.hpp b/src/ccache/core/statisticscounters.hpp index 8e6e90df..45124158 100644 --- a/src/ccache/core/statisticscounters.hpp +++ b/src/ccache/core/statisticscounters.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/statslog.cpp b/src/ccache/core/statslog.cpp index 6661bc9a..9039f36c 100644 --- a/src/ccache/core/statslog.cpp +++ b/src/ccache/core/statslog.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/statslog.hpp b/src/ccache/core/statslog.hpp index 0093d46b..cb2d5cd9 100644 --- a/src/ccache/core/statslog.hpp +++ b/src/ccache/core/statslog.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/types.cpp b/src/ccache/core/types.cpp index 3333a795..f934357e 100644 --- a/src/ccache/core/types.cpp +++ b/src/ccache/core/types.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/core/types.hpp b/src/ccache/core/types.hpp index 592eb4fe..8d0297f3 100644 --- a/src/ccache/core/types.hpp +++ b/src/ccache/core/types.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2022 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/depfile.cpp b/src/ccache/depfile.cpp index a2c014e0..03d710e7 100644 --- a/src/ccache/depfile.cpp +++ b/src/ccache/depfile.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/depfile.hpp b/src/ccache/depfile.hpp index 13bc849f..e7b161b0 100644 --- a/src/ccache/depfile.hpp +++ b/src/ccache/depfile.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/execute.cpp b/src/ccache/execute.cpp index b133cae1..51a50e5e 100644 --- a/src/ccache/execute.cpp +++ b/src/ccache/execute.cpp @@ -1,7 +1,7 @@ // Copyright (C) 2002 Andrew Tridgell // Copyright (C) 2011-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/execute.hpp b/src/ccache/execute.hpp index 18daac2c..4be34427 100644 --- a/src/ccache/execute.hpp +++ b/src/ccache/execute.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/hash.cpp b/src/ccache/hash.cpp index 0fabb2a6..f56d9a8d 100644 --- a/src/ccache/hash.cpp +++ b/src/ccache/hash.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/hash.hpp b/src/ccache/hash.hpp index 92e0a697..eebcd52f 100644 --- a/src/ccache/hash.hpp +++ b/src/ccache/hash.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/hashutil.cpp b/src/ccache/hashutil.cpp index df907b89..38f7893d 100644 --- a/src/ccache/hashutil.cpp +++ b/src/ccache/hashutil.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2009-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/hashutil.hpp b/src/ccache/hashutil.hpp index c59652ea..5f94d8b6 100644 --- a/src/ccache/hashutil.hpp +++ b/src/ccache/hashutil.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2009-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/inodecache.cpp b/src/ccache/inodecache.cpp index 95908e0e..83083fcf 100644 --- a/src/ccache/inodecache.cpp +++ b/src/ccache/inodecache.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/inodecache.hpp b/src/ccache/inodecache.hpp index 0aee5f9b..bcbb240b 100644 --- a/src/ccache/inodecache.hpp +++ b/src/ccache/inodecache.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/language.cpp b/src/ccache/language.cpp index ff068ea1..fff7b0f5 100644 --- a/src/ccache/language.cpp +++ b/src/ccache/language.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/language.hpp b/src/ccache/language.hpp index ec9f4d3c..947db1c3 100644 --- a/src/ccache/language.hpp +++ b/src/ccache/language.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/macroskip.hpp b/src/ccache/macroskip.hpp index 5cacba87..92cb3e2f 100644 --- a/src/ccache/macroskip.hpp +++ b/src/ccache/macroskip.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2021 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/main.cpp b/src/ccache/main.cpp index 9b4e5fa9..5a0f3ba0 100644 --- a/src/ccache/main.cpp +++ b/src/ccache/main.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2020 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/progressbar.cpp b/src/ccache/progressbar.cpp index 8627aabb..b13e5b8b 100644 --- a/src/ccache/progressbar.cpp +++ b/src/ccache/progressbar.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/progressbar.hpp b/src/ccache/progressbar.hpp index 1be38020..7ea9d982 100644 --- a/src/ccache/progressbar.hpp +++ b/src/ccache/progressbar.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2021 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/signalhandler.cpp b/src/ccache/signalhandler.cpp index 6f3a0bb6..653570d1 100644 --- a/src/ccache/signalhandler.cpp +++ b/src/ccache/signalhandler.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/signalhandler.hpp b/src/ccache/signalhandler.hpp index 45a56776..8e71c315 100644 --- a/src/ccache/signalhandler.hpp +++ b/src/ccache/signalhandler.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/local/localstorage.cpp b/src/ccache/storage/local/localstorage.cpp index d21410b9..fcdeb3cc 100644 --- a/src/ccache/storage/local/localstorage.cpp +++ b/src/ccache/storage/local/localstorage.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/local/localstorage.hpp b/src/ccache/storage/local/localstorage.hpp index 58366f9f..6b31d93b 100644 --- a/src/ccache/storage/local/localstorage.hpp +++ b/src/ccache/storage/local/localstorage.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/local/statsfile.cpp b/src/ccache/storage/local/statsfile.cpp index 07d14507..f3e500a8 100644 --- a/src/ccache/storage/local/statsfile.cpp +++ b/src/ccache/storage/local/statsfile.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/local/statsfile.hpp b/src/ccache/storage/local/statsfile.hpp index 07d4ef47..89a261db 100644 --- a/src/ccache/storage/local/statsfile.hpp +++ b/src/ccache/storage/local/statsfile.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/local/util.cpp b/src/ccache/storage/local/util.cpp index 0d23b3f0..984bcea5 100644 --- a/src/ccache/storage/local/util.cpp +++ b/src/ccache/storage/local/util.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/local/util.hpp b/src/ccache/storage/local/util.hpp index b006c360..33170db2 100644 --- a/src/ccache/storage/local/util.hpp +++ b/src/ccache/storage/local/util.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/remote/filestorage.cpp b/src/ccache/storage/remote/filestorage.cpp index eca30a4d..574b2da7 100644 --- a/src/ccache/storage/remote/filestorage.cpp +++ b/src/ccache/storage/remote/filestorage.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/remote/filestorage.hpp b/src/ccache/storage/remote/filestorage.hpp index 1c94c0a4..8e281db9 100644 --- a/src/ccache/storage/remote/filestorage.hpp +++ b/src/ccache/storage/remote/filestorage.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/remote/httpstorage.cpp b/src/ccache/storage/remote/httpstorage.cpp index 7d3cd2f7..d3aacc58 100644 --- a/src/ccache/storage/remote/httpstorage.cpp +++ b/src/ccache/storage/remote/httpstorage.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/remote/httpstorage.hpp b/src/ccache/storage/remote/httpstorage.hpp index e0bb7888..371253bf 100644 --- a/src/ccache/storage/remote/httpstorage.hpp +++ b/src/ccache/storage/remote/httpstorage.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/remote/redisstorage.cpp b/src/ccache/storage/remote/redisstorage.cpp index 73df93ce..53151016 100644 --- a/src/ccache/storage/remote/redisstorage.cpp +++ b/src/ccache/storage/remote/redisstorage.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/remote/redisstorage.hpp b/src/ccache/storage/remote/redisstorage.hpp index e8d3a8b5..f695d20b 100644 --- a/src/ccache/storage/remote/redisstorage.hpp +++ b/src/ccache/storage/remote/redisstorage.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/remote/remotestorage.cpp b/src/ccache/storage/remote/remotestorage.cpp index 8da17878..29b56310 100644 --- a/src/ccache/storage/remote/remotestorage.cpp +++ b/src/ccache/storage/remote/remotestorage.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/remote/remotestorage.hpp b/src/ccache/storage/remote/remotestorage.hpp index 60f03b8a..8b386801 100644 --- a/src/ccache/storage/remote/remotestorage.hpp +++ b/src/ccache/storage/remote/remotestorage.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/storage.cpp b/src/ccache/storage/storage.cpp index 06e8df5a..069e51be 100644 --- a/src/ccache/storage/storage.cpp +++ b/src/ccache/storage/storage.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/storage.hpp b/src/ccache/storage/storage.hpp index 94ba3e9c..6a8a9eff 100644 --- a/src/ccache/storage/storage.hpp +++ b/src/ccache/storage/storage.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/storage/types.hpp b/src/ccache/storage/types.hpp index 392ea8a5..6e8a6bcd 100644 --- a/src/ccache/storage/types.hpp +++ b/src/ccache/storage/types.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/test_lockfile.cpp b/src/ccache/test_lockfile.cpp index 904ba011..8232e2bd 100644 --- a/src/ccache/test_lockfile.cpp +++ b/src/ccache/test_lockfile.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/args.cpp b/src/ccache/util/args.cpp index 153b421d..58fb90fb 100644 --- a/src/ccache/util/args.cpp +++ b/src/ccache/util/args.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/args.hpp b/src/ccache/util/args.hpp index b29280a4..78549424 100644 --- a/src/ccache/util/args.hpp +++ b/src/ccache/util/args.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/assertions.cpp b/src/ccache/util/assertions.cpp index f430fb67..d8ac24d2 100644 --- a/src/ccache/util/assertions.cpp +++ b/src/ccache/util/assertions.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/assertions.hpp b/src/ccache/util/assertions.hpp index 39304357..bec9efcd 100644 --- a/src/ccache/util/assertions.hpp +++ b/src/ccache/util/assertions.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/bitset.hpp b/src/ccache/util/bitset.hpp index 5006af4b..ed0d2a25 100644 --- a/src/ccache/util/bitset.hpp +++ b/src/ccache/util/bitset.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2023 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/bytes.cpp b/src/ccache/util/bytes.cpp index 795bd2fa..3bd1a1d7 100644 --- a/src/ccache/util/bytes.cpp +++ b/src/ccache/util/bytes.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/bytes.hpp b/src/ccache/util/bytes.hpp index 0bfa2284..fba14d61 100644 --- a/src/ccache/util/bytes.hpp +++ b/src/ccache/util/bytes.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/clang.cpp b/src/ccache/util/clang.cpp index 713daeb2..3eb4caee 100644 --- a/src/ccache/util/clang.cpp +++ b/src/ccache/util/clang.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/clang.hpp b/src/ccache/util/clang.hpp index 32e4861a..d05c3ff6 100644 --- a/src/ccache/util/clang.hpp +++ b/src/ccache/util/clang.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/conversion.hpp b/src/ccache/util/conversion.hpp index 7258df92..d6466780 100644 --- a/src/ccache/util/conversion.hpp +++ b/src/ccache/util/conversion.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/cpu.cpp b/src/ccache/util/cpu.cpp index 18408a68..c6effcea 100644 --- a/src/ccache/util/cpu.cpp +++ b/src/ccache/util/cpu.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/cpu.hpp b/src/ccache/util/cpu.hpp index 3a065b09..a772d0c4 100644 --- a/src/ccache/util/cpu.hpp +++ b/src/ccache/util/cpu.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/defer.hpp b/src/ccache/util/defer.hpp index cb40b9f6..8b1d122b 100644 --- a/src/ccache/util/defer.hpp +++ b/src/ccache/util/defer.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/direntry.cpp b/src/ccache/util/direntry.cpp index 2a3b9f7f..60e42cf2 100644 --- a/src/ccache/util/direntry.cpp +++ b/src/ccache/util/direntry.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/direntry.hpp b/src/ccache/util/direntry.hpp index 62a7fffa..9b4f4ed5 100644 --- a/src/ccache/util/direntry.hpp +++ b/src/ccache/util/direntry.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/duration.hpp b/src/ccache/util/duration.hpp index b7ab0822..33590dfd 100644 --- a/src/ccache/util/duration.hpp +++ b/src/ccache/util/duration.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2023 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/environment.cpp b/src/ccache/util/environment.cpp index 5987bd1f..b795001a 100644 --- a/src/ccache/util/environment.cpp +++ b/src/ccache/util/environment.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/environment.hpp b/src/ccache/util/environment.hpp index a81cfbc2..3a922557 100644 --- a/src/ccache/util/environment.hpp +++ b/src/ccache/util/environment.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/error.cpp b/src/ccache/util/error.cpp index 488039b3..d2f83213 100644 --- a/src/ccache/util/error.cpp +++ b/src/ccache/util/error.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/error.hpp b/src/ccache/util/error.hpp index a4713842..57ba430f 100644 --- a/src/ccache/util/error.hpp +++ b/src/ccache/util/error.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/exec.cpp b/src/ccache/util/exec.cpp index c3ecf686..8de30cbb 100644 --- a/src/ccache/util/exec.cpp +++ b/src/ccache/util/exec.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/exec.hpp b/src/ccache/util/exec.hpp index 5c0cfee1..f6f258cc 100644 --- a/src/ccache/util/exec.hpp +++ b/src/ccache/util/exec.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/expected.hpp b/src/ccache/util/expected.hpp index 212b14c3..31d697bd 100644 --- a/src/ccache/util/expected.hpp +++ b/src/ccache/util/expected.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/fd.hpp b/src/ccache/util/fd.hpp index 79ffe887..8b797d3e 100644 --- a/src/ccache/util/fd.hpp +++ b/src/ccache/util/fd.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/file.cpp b/src/ccache/util/file.cpp index d8f1cb55..fe724517 100644 --- a/src/ccache/util/file.cpp +++ b/src/ccache/util/file.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/file.hpp b/src/ccache/util/file.hpp index 40c4031d..783df5e9 100644 --- a/src/ccache/util/file.hpp +++ b/src/ccache/util/file.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/filelock.cpp b/src/ccache/util/filelock.cpp index 04abcc52..6c35b115 100644 --- a/src/ccache/util/filelock.cpp +++ b/src/ccache/util/filelock.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2024-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/filelock.hpp b/src/ccache/util/filelock.hpp index 806784fd..6c1b9a2e 100644 --- a/src/ccache/util/filelock.hpp +++ b/src/ccache/util/filelock.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/filestream.hpp b/src/ccache/util/filestream.hpp index f5f39a25..022fe47e 100644 --- a/src/ccache/util/filestream.hpp +++ b/src/ccache/util/filestream.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/filesystem.cpp b/src/ccache/util/filesystem.cpp index 77ea074d..47bf3bf3 100644 --- a/src/ccache/util/filesystem.cpp +++ b/src/ccache/util/filesystem.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/filesystem.hpp b/src/ccache/util/filesystem.hpp index c009b086..b01abe87 100644 --- a/src/ccache/util/filesystem.hpp +++ b/src/ccache/util/filesystem.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/format.hpp b/src/ccache/util/format.hpp index 3363884c..613ac478 100644 --- a/src/ccache/util/format.hpp +++ b/src/ccache/util/format.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/lockfile.cpp b/src/ccache/util/lockfile.cpp index 87e338af..aa8f84b7 100644 --- a/src/ccache/util/lockfile.cpp +++ b/src/ccache/util/lockfile.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/lockfile.hpp b/src/ccache/util/lockfile.hpp index 243b18b9..169fffe1 100644 --- a/src/ccache/util/lockfile.hpp +++ b/src/ccache/util/lockfile.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/logging.cpp b/src/ccache/util/logging.cpp index bb11e279..5d1d3ae9 100644 --- a/src/ccache/util/logging.cpp +++ b/src/ccache/util/logging.cpp @@ -1,7 +1,7 @@ // Copyright (C) 2002 Andrew Tridgell // Copyright (C) 2009-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/logging.hpp b/src/ccache/util/logging.hpp index 51cfbb42..d033754e 100644 --- a/src/ccache/util/logging.hpp +++ b/src/ccache/util/logging.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/longlivedlockfilemanager.cpp b/src/ccache/util/longlivedlockfilemanager.cpp index 73bba56a..452b00f5 100644 --- a/src/ccache/util/longlivedlockfilemanager.cpp +++ b/src/ccache/util/longlivedlockfilemanager.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/longlivedlockfilemanager.hpp b/src/ccache/util/longlivedlockfilemanager.hpp index 9a04357c..65848b37 100644 --- a/src/ccache/util/longlivedlockfilemanager.hpp +++ b/src/ccache/util/longlivedlockfilemanager.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/macro.hpp b/src/ccache/util/macro.hpp index de1e04aa..61b215af 100644 --- a/src/ccache/util/macro.hpp +++ b/src/ccache/util/macro.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/memorymap.cpp b/src/ccache/util/memorymap.cpp index 0b85a286..a0516fa9 100644 --- a/src/ccache/util/memorymap.cpp +++ b/src/ccache/util/memorymap.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2024 ccache contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/memorymap.hpp b/src/ccache/util/memorymap.hpp index fd7eb110..7d85711e 100644 --- a/src/ccache/util/memorymap.hpp +++ b/src/ccache/util/memorymap.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2024 ccache contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/noncopyable.hpp b/src/ccache/util/noncopyable.hpp index ffcb4031..134e82ce 100644 --- a/src/ccache/util/noncopyable.hpp +++ b/src/ccache/util/noncopyable.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2023 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/path.cpp b/src/ccache/util/path.cpp index 855dc587..4c4ae7ed 100644 --- a/src/ccache/util/path.cpp +++ b/src/ccache/util/path.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/path.hpp b/src/ccache/util/path.hpp index 22b2795c..919aa203 100644 --- a/src/ccache/util/path.hpp +++ b/src/ccache/util/path.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/pathstring.hpp b/src/ccache/util/pathstring.hpp index f4dc94b3..c8d669c3 100644 --- a/src/ccache/util/pathstring.hpp +++ b/src/ccache/util/pathstring.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/process.cpp b/src/ccache/util/process.cpp index 6a97e80a..065cce62 100644 --- a/src/ccache/util/process.cpp +++ b/src/ccache/util/process.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/process.hpp b/src/ccache/util/process.hpp index 2e8e9e82..2d0acba1 100644 --- a/src/ccache/util/process.hpp +++ b/src/ccache/util/process.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2023 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/string.cpp b/src/ccache/util/string.cpp index 1ff7c5ed..c3729701 100644 --- a/src/ccache/util/string.cpp +++ b/src/ccache/util/string.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/string.hpp b/src/ccache/util/string.hpp index e4a0de8a..dff3571f 100644 --- a/src/ccache/util/string.hpp +++ b/src/ccache/util/string.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/temporaryfile.cpp b/src/ccache/util/temporaryfile.cpp index 390cfe76..af96ae47 100644 --- a/src/ccache/util/temporaryfile.cpp +++ b/src/ccache/util/temporaryfile.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/temporaryfile.hpp b/src/ccache/util/temporaryfile.hpp index b3cb0176..4d4c997c 100644 --- a/src/ccache/util/temporaryfile.hpp +++ b/src/ccache/util/temporaryfile.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/texttable.cpp b/src/ccache/util/texttable.cpp index 8da49962..bef45939 100644 --- a/src/ccache/util/texttable.cpp +++ b/src/ccache/util/texttable.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/texttable.hpp b/src/ccache/util/texttable.hpp index 5602d6a6..09de1abd 100644 --- a/src/ccache/util/texttable.hpp +++ b/src/ccache/util/texttable.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/threadpool.cpp b/src/ccache/util/threadpool.cpp index 2257198d..107213a5 100644 --- a/src/ccache/util/threadpool.cpp +++ b/src/ccache/util/threadpool.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/threadpool.hpp b/src/ccache/util/threadpool.hpp index 3e82ab49..e6559f66 100644 --- a/src/ccache/util/threadpool.hpp +++ b/src/ccache/util/threadpool.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/time.cpp b/src/ccache/util/time.cpp index 26868734..8630d267 100644 --- a/src/ccache/util/time.cpp +++ b/src/ccache/util/time.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/time.hpp b/src/ccache/util/time.hpp index 635faad3..16d90af6 100644 --- a/src/ccache/util/time.hpp +++ b/src/ccache/util/time.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/timepoint.cpp b/src/ccache/util/timepoint.cpp index 122bf18d..d22432c6 100644 --- a/src/ccache/util/timepoint.cpp +++ b/src/ccache/util/timepoint.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/timepoint.hpp b/src/ccache/util/timepoint.hpp index d41f0fc6..65e0c36a 100644 --- a/src/ccache/util/timepoint.hpp +++ b/src/ccache/util/timepoint.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/timer.hpp b/src/ccache/util/timer.hpp index a74d1dce..8065dad2 100644 --- a/src/ccache/util/timer.hpp +++ b/src/ccache/util/timer.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/tokenizer.cpp b/src/ccache/util/tokenizer.cpp index cf516747..64cc4f75 100644 --- a/src/ccache/util/tokenizer.cpp +++ b/src/ccache/util/tokenizer.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/tokenizer.hpp b/src/ccache/util/tokenizer.hpp index 143be82b..a571c6ed 100644 --- a/src/ccache/util/tokenizer.hpp +++ b/src/ccache/util/tokenizer.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/types.hpp b/src/ccache/util/types.hpp index cf293c00..e280afb1 100644 --- a/src/ccache/util/types.hpp +++ b/src/ccache/util/types.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2023 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/umaskscope.cpp b/src/ccache/util/umaskscope.cpp index 24830274..be4a5286 100644 --- a/src/ccache/util/umaskscope.cpp +++ b/src/ccache/util/umaskscope.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/umaskscope.hpp b/src/ccache/util/umaskscope.hpp index 1bdbabd3..9bbe0e54 100644 --- a/src/ccache/util/umaskscope.hpp +++ b/src/ccache/util/umaskscope.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2023 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/wincompat.hpp b/src/ccache/util/wincompat.hpp index 0859608e..018d3da4 100644 --- a/src/ccache/util/wincompat.hpp +++ b/src/ccache/util/wincompat.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/xxh3_128.hpp b/src/ccache/util/xxh3_128.hpp index 4d816603..6780d119 100644 --- a/src/ccache/util/xxh3_128.hpp +++ b/src/ccache/util/xxh3_128.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/xxh3_64.hpp b/src/ccache/util/xxh3_64.hpp index 72e91887..ac5fd1a1 100644 --- a/src/ccache/util/xxh3_64.hpp +++ b/src/ccache/util/xxh3_64.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2021 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/zstd.cpp b/src/ccache/util/zstd.cpp index 1bc75e47..683c4642 100644 --- a/src/ccache/util/zstd.cpp +++ b/src/ccache/util/zstd.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/src/ccache/util/zstd.hpp b/src/ccache/util/zstd.hpp index 9811cd12..f6f2b0d9 100644 --- a/src/ccache/util/zstd.hpp +++ b/src/ccache/util/zstd.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/test/run b/test/run index 933a7574..f0a33191 100755 --- a/test/run +++ b/test/run @@ -5,7 +5,7 @@ # Copyright (C) 2002-2007 Andrew Tridgell # Copyright (C) 2009-2025 Joel Rosdahl and other contributors # -# See doc/AUTHORS.adoc for a complete list of contributors. +# See doc/authors.adoc for a complete list of contributors. # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/unittest/main.cpp b/unittest/main.cpp index 58286f52..0cf593c5 100644 --- a/unittest/main.cpp +++ b/unittest/main.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_argprocessing.cpp b/unittest/test_argprocessing.cpp index ec2778ff..b2db1ece 100644 --- a/unittest/test_argprocessing.cpp +++ b/unittest/test_argprocessing.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_bsdmkstemp.cpp b/unittest/test_bsdmkstemp.cpp index 91934a04..5e274708 100644 --- a/unittest/test_bsdmkstemp.cpp +++ b/unittest/test_bsdmkstemp.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_ccache.cpp b/unittest/test_ccache.cpp index c8d1cc47..b2033993 100644 --- a/unittest/test_ccache.cpp +++ b/unittest/test_ccache.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_compopt.cpp b/unittest/test_compopt.cpp index 220d1486..9b1eac70 100644 --- a/unittest/test_compopt.cpp +++ b/unittest/test_compopt.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_compression_types.cpp b/unittest/test_compression_types.cpp index c712a429..64649ed1 100644 --- a/unittest/test_compression_types.cpp +++ b/unittest/test_compression_types.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_config.cpp b/unittest/test_config.cpp index 00a00cde..8e2de030 100644 --- a/unittest/test_config.cpp +++ b/unittest/test_config.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2011-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_core_atomicfile.cpp b/unittest/test_core_atomicfile.cpp index e1075d40..5e2a764d 100644 --- a/unittest/test_core_atomicfile.cpp +++ b/unittest/test_core_atomicfile.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2011-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_core_common.cpp b/unittest/test_core_common.cpp index 7cda15df..9241cf4b 100644 --- a/unittest/test_core_common.cpp +++ b/unittest/test_core_common.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_core_msvcshowincludesoutput.cpp b/unittest/test_core_msvcshowincludesoutput.cpp index 14ace84d..654621c9 100644 --- a/unittest/test_core_msvcshowincludesoutput.cpp +++ b/unittest/test_core_msvcshowincludesoutput.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_core_statistics.cpp b/unittest/test_core_statistics.cpp index 755c3659..f95365b4 100644 --- a/unittest/test_core_statistics.cpp +++ b/unittest/test_core_statistics.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2011-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_core_statisticscounters.cpp b/unittest/test_core_statisticscounters.cpp index 341aa5d0..39580040 100644 --- a/unittest/test_core_statisticscounters.cpp +++ b/unittest/test_core_statisticscounters.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_core_statslog.cpp b/unittest/test_core_statslog.cpp index 9b5ce4bb..440aa248 100644 --- a/unittest/test_core_statslog.cpp +++ b/unittest/test_core_statslog.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_depfile.cpp b/unittest/test_depfile.cpp index 3b1a4348..2ee7290a 100644 --- a/unittest/test_depfile.cpp +++ b/unittest/test_depfile.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_hash.cpp b/unittest/test_hash.cpp index 92def441..ec3cfce1 100644 --- a/unittest/test_hash.cpp +++ b/unittest/test_hash.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_hashutil.cpp b/unittest/test_hashutil.cpp index fbae64dd..4dc945ed 100644 --- a/unittest/test_hashutil.cpp +++ b/unittest/test_hashutil.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2010-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_inodecache.cpp b/unittest/test_inodecache.cpp index f71ca050..f0a6cedb 100644 --- a/unittest/test_inodecache.cpp +++ b/unittest/test_inodecache.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_storage_local_statsfile.cpp b/unittest/test_storage_local_statsfile.cpp index 20493cd2..0c1a5796 100644 --- a/unittest/test_storage_local_statsfile.cpp +++ b/unittest/test_storage_local_statsfile.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2011-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_storage_local_util.cpp b/unittest/test_storage_local_util.cpp index f6159658..86b66755 100644 --- a/unittest/test_storage_local_util.cpp +++ b/unittest/test_storage_local_util.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_args.cpp b/unittest/test_util_args.cpp index 6943111d..c00fd8a5 100644 --- a/unittest/test_util_args.cpp +++ b/unittest/test_util_args.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_bitset.cpp b/unittest/test_util_bitset.cpp index d77fa6ec..733ceb25 100644 --- a/unittest/test_util_bitset.cpp +++ b/unittest/test_util_bitset.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_bytes.cpp b/unittest/test_util_bytes.cpp index 3d739457..35ca9ff4 100644 --- a/unittest/test_util_bytes.cpp +++ b/unittest/test_util_bytes.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_clang.cpp b/unittest/test_util_clang.cpp index e4122b70..d78f200d 100644 --- a/unittest/test_util_clang.cpp +++ b/unittest/test_util_clang.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_conversion.cpp b/unittest/test_util_conversion.cpp index 2ca1d1bb..e056a9ae 100644 --- a/unittest/test_util_conversion.cpp +++ b/unittest/test_util_conversion.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_direntry.cpp b/unittest/test_util_direntry.cpp index 741e08fb..411300fe 100644 --- a/unittest/test_util_direntry.cpp +++ b/unittest/test_util_direntry.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_duration.cpp b/unittest/test_util_duration.cpp index 0ebcce77..c420be15 100644 --- a/unittest/test_util_duration.cpp +++ b/unittest/test_util_duration.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_environment.cpp b/unittest/test_util_environment.cpp index 4a4fa030..9f6d98ce 100644 --- a/unittest/test_util_environment.cpp +++ b/unittest/test_util_environment.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2023-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_exec.cpp b/unittest/test_util_exec.cpp index d79af381..7c56732c 100644 --- a/unittest/test_util_exec.cpp +++ b/unittest/test_util_exec.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_expected.cpp b/unittest/test_util_expected.cpp index bd84ac61..7db99cc0 100644 --- a/unittest/test_util_expected.cpp +++ b/unittest/test_util_expected.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_file.cpp b/unittest/test_util_file.cpp index 3cf84e96..16ffd705 100644 --- a/unittest/test_util_file.cpp +++ b/unittest/test_util_file.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_lockfile.cpp b/unittest/test_util_lockfile.cpp index 57fcd31c..8652c3a2 100644 --- a/unittest/test_util_lockfile.cpp +++ b/unittest/test_util_lockfile.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_path.cpp b/unittest/test_util_path.cpp index 9ecddbcd..be334638 100644 --- a/unittest/test_util_path.cpp +++ b/unittest/test_util_path.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_string.cpp b/unittest/test_util_string.cpp index efce696a..9cfa95cc 100644 --- a/unittest/test_util_string.cpp +++ b/unittest/test_util_string.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_texttable.cpp b/unittest/test_util_texttable.cpp index 036dd483..fba72c9f 100644 --- a/unittest/test_util_texttable.cpp +++ b/unittest/test_util_texttable.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_timepoint.cpp b/unittest/test_util_timepoint.cpp index 0c120e60..44acb7bb 100644 --- a/unittest/test_util_timepoint.cpp +++ b/unittest/test_util_timepoint.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2022-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_tokenizer.cpp b/unittest/test_util_tokenizer.cpp index d8f34a16..56e695a6 100644 --- a/unittest/test_util_tokenizer.cpp +++ b/unittest/test_util_tokenizer.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2021-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_xxh3_128.cpp b/unittest/test_util_xxh3_128.cpp index b9cfa7f7..35d0d981 100644 --- a/unittest/test_util_xxh3_128.cpp +++ b/unittest/test_util_xxh3_128.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2011-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_xxh3_64.cpp b/unittest/test_util_xxh3_64.cpp index 705f1db8..b559ec44 100644 --- a/unittest/test_util_xxh3_64.cpp +++ b/unittest/test_util_xxh3_64.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2011-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/test_util_zstd.cpp b/unittest/test_util_zstd.cpp index 4b411af8..3e619851 100644 --- a/unittest/test_util_zstd.cpp +++ b/unittest/test_util_zstd.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2019-2024 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/testutil.cpp b/unittest/testutil.cpp index cc09db4f..257f12d1 100644 --- a/unittest/testutil.cpp +++ b/unittest/testutil.cpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2025 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free diff --git a/unittest/testutil.hpp b/unittest/testutil.hpp index 9c444900..daa1584c 100644 --- a/unittest/testutil.hpp +++ b/unittest/testutil.hpp @@ -1,6 +1,6 @@ // Copyright (C) 2020-2023 Joel Rosdahl and other contributors // -// See doc/AUTHORS.adoc for a complete list of contributors. +// See doc/authors.adoc for a complete list of contributors. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free