diff options
Diffstat (limited to 'build/root.build')
-rw-r--r-- | build/root.build | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/build/root.build b/build/root.build index 51de604..a0c9317 100644 --- a/build/root.build +++ b/build/root.build @@ -51,8 +51,9 @@ tests/{libue libul}{*}: bin.whole = false # test.target = $cxx.target -# Extract the copyright notice from the COPYRIGHT file. +# Extract the copyright notice from the LICENSE file. # -copyright = $process.run_regex(cat $src_root/COPYRIGHT, \ - 'Copyright \(c\) (.+)\.', \ - '\1') +copyright = $process.run_regex( \ + cat $src_root/LICENSE, \ + 'Copyright \(c\) (.+) \(see the AUTHORS file\)\.', \ + '\1') |