From 02c94fbd481cfd237c5cfdd7a55d6bba9922984d Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 18 Feb 2020 16:13:23 +0300 Subject: Fix copyright notice extraction for building --- openssl/buildfile | 9 +++++---- 1 file 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\" -- cgit v1.1