diff options
author | Tanzinul Islam <tanzinul.islam@gmail.com> | 2020-11-27 14:22:38 +0000 |
---|---|---|
committer | Dmitry Belyavskiy <beldmit@gmail.com> | 2021-04-19 11:05:54 +0200 |
commit | 847f41d97c966707d45da5640792e3bd8f8d23fd (patch) | |
tree | c197e09fcba37ad2e2b85f2a1c2415429735b48c /Configurations/windows-makefile.tmpl | |
parent | 583a9f1f6b0d0842f8d63a21c335b24494fc67bc (diff) | |
download | openssl-new-847f41d97c966707d45da5640792e3bd8f8d23fd.tar.gz |
Add explanation + bugtracker link for quoted dependency workarounds
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/13540)
Diffstat (limited to 'Configurations/windows-makefile.tmpl')
-rw-r--r-- | Configurations/windows-makefile.tmpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl index 3160984ccc..c7e6dfc850 100644 --- a/Configurations/windows-makefile.tmpl +++ b/Configurations/windows-makefile.tmpl @@ -639,6 +639,10 @@ $args{target}: $deps EOF } + # This function (and the next) avoids quoting paths of generated dependencies + # (in the build tree), but quotes paths of non-generated dependencies (in the + # source tree). This is a workaround for a limitation of C++Builder's make.exe + # in handling quoted paths: https://quality.embarcadero.com/browse/RSP-31756 sub generatesrc { my %args = @_; my $gen0 = $args{generator}->[0]; |