From d8278dac47996a442a480958702d913f2eff7b93 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 27 Mar 2018 11:10:15 +0200 Subject: [PATCH] Copy the produced .dll files to fuzz/ as well (Cygwin & mingw) Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/5759) --- Configurations/unix-Makefile.tmpl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 07e2036c1f..40cf2c3df4 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -927,8 +927,10 @@ EOF . (windowsdll() ? <<"EOF" : ""); rm -f apps/$shlib$shlibext rm -f test/$shlib$shlibext + rm -f fuzz/$shlib$shlibext cp -p $shlib$shlibext apps/ cp -p $shlib$shlibext test/ + cp -p $shlib$shlibext fuzz/ EOF } sub obj2dso { -- 2.25.1