Skip to content

Commit a9ac9da

Browse files
committedAug 8, 2023
deps: fix openssl crypto clean
PR-URL: #49043
1 parent 362d4c7 commit a9ac9da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎deps/openssl/config/generate_gypi.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,6 @@
172172
close(CLGYPI);
173173

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

0 commit comments

Comments
 (0)
Please sign in to comment.