diff options
Diffstat (limited to 'openssl/buildfile')
-rw-r--r-- | openssl/buildfile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/openssl/buildfile b/openssl/buildfile index ab25be9..cacbee9 100644 --- a/openssl/buildfile +++ b/openssl/buildfile @@ -51,11 +51,12 @@ for t: cxx{**.test...} # Build options. # -# Pass the copyright notice extracted from the COPYRIGHT file. +# Pass the copyright notice extracted 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') obj{agent/pkcs11/agent client/client}: \ cxx.poptions += -DOPENSSL_AGENT_COPYRIGHT=\"$copyright\" |