Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v16.x] deps: update OpenSSL 1_1_1v+quic #49006

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
deps: fix openssl crypto clean
RafaelGSS committed Aug 3, 2023
commit 00140be2993c46ec8d3db4b3725eb76577f47c24
4 changes: 2 additions & 2 deletions deps/openssl/config/generate_gypi.pl
Original file line number Diff line number Diff line change
@@ -172,6 +172,6 @@
close(CLGYPI);

# Clean Up
my $cmd2 ="cd $src_dir; make -f $makefile clean; make -f $makefile distclean;" .
"git clean -f $src_dir/crypto";
my $cmd2 ="cd $src_dir; make -f $makefile clean; make -f $makefile distclean; " .
"git clean -f crypto";
system($cmd2) == 0 or die "Error in system($cmd2)";