diff options
author | Matt Caswell <matt@openssl.org> | 2021-04-15 17:16:59 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2021-04-19 11:41:51 +0200 |
commit | 21d1994faf7f6e41ad3221caeab2385e3aaba892 (patch) | |
tree | 71f2ca561d4334167fa92f30e2bdce3cec260812 /Configurations/unix-Makefile.tmpl | |
parent | Fix some TODO(3.0) occurrences in ssl/t1_lib.c (diff) | |
download | openssl-21d1994faf7f6e41ad3221caeab2385e3aaba892.tar.xz openssl-21d1994faf7f6e41ad3221caeab2385e3aaba892.zip |
Don't worry about magic in the Makefile for 3.0
We remove a TODO(3.0) from the unix Makefile template. The current
approach works. It can be improved later.
Fixes #14403
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14887)
Diffstat (limited to '')
-rw-r--r-- | Configurations/unix-Makefile.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 64c5faff18..c4755c54cd 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -1696,7 +1696,7 @@ EOF @{$args{objs}}; my @deps = compute_lib_depends(@{$args{deps}}); my $shared_def = join("", map { ' '.$target{shared_defflag}.$_ } @defs); - # TODO(3.0): next line needs to become "less magic" (see PR #11950) + # Next line needs to become "less magic" (see PR #11950) $shared_def .= ' '.$target{shared_fipsflag} if (m/providers\/fips/ && defined $target{shared_fipsflag}); my $objs = join(" \\\n\t\t", fill_lines(' ', $COLUMNS - 16, @objs)); my $deps = join(" \\\n" . ' ' x (length($dso) + 2), |