From: Matt Caswell Date: Wed, 16 Aug 2017 13:33:13 +0000 (+0100) Subject: Copy dlls into fuzz directory X-Git-Tag: OpenSSL_1_1_0h~76 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3493b39d17bc064dcf0e81bceeeb3dff18cb1944;p=oweals%2Fopenssl.git Copy dlls into fuzz directory This should fix the recent AppVeyor failures. [extended tests] Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/4171) (cherry picked from commit 30bb02597df9a79b46bae2ddc9885a35286ed205) --- diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl index e86ba27dd1..d90174a845 100644 --- a/Configurations/windows-makefile.tmpl +++ b/Configurations/windows-makefile.tmpl @@ -236,6 +236,7 @@ libclean: "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """$$1.*"""; } @ARGV" $(SHLIBS) "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """apps/$$1.*"""; } @ARGV" $(SHLIBS) "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """test/$$1.*"""; } @ARGV" $(SHLIBS) + "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """fuzz/$$1.*"""; } @ARGV" $(SHLIBS) -del /Q /F $(LIBS) -del /Q ossl_static.pdb @@ -506,8 +507,10 @@ $objs $shlib.res$linklibs \$(EX_LIBS) \$(MT) \$(MTFLAGS) \$(MTINFLAG)$shlib$shlibext.manifest \$(MTOUTFLAG)$shlib$shlibext IF EXIST apps\\$shlib$shlibext DEL /Q /F apps\\$shlib$shlibext IF EXIST test\\$shlib$shlibext DEL /Q /F test\\$shlib$shlibext + IF EXIST fuzz\\$shlib$shlibext DEL /Q /F fuzz\\$shlib$shlibext COPY $shlib$shlibext apps COPY $shlib$shlibext test + COPY $shlib$shlibext fuzz EOF } sub obj2dso {