From: Eric Bollengier Date: Wed, 9 Dec 2020 14:10:45 +0000 (+0100) Subject: win32: Tweak openssl build X-Git-Tag: Release-11.0.0~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a8d4792656c5d54a919535b7be94bc0fd85276a;p=thirdparty%2Fbacula.git win32: Tweak openssl build --- diff --git a/bacula/src/win32/build-depkgs-mingw-w64 b/bacula/src/win32/build-depkgs-mingw-w64 index f9631d961..4f2a18439 100755 --- a/bacula/src/win32/build-depkgs-mingw-w64 +++ b/bacula/src/win32/build-depkgs-mingw-w64 @@ -260,7 +260,7 @@ process_openssl() echo Installing openssl do_make Makefile -k install_sw install cp *.dll ${DEPPKG_DIR}/bin - mkdir ${DEPPKG_DIR}/ssl + mkdir -p ${DEPPKG_DIR}/ssl cp -f apps/openssl.cnf ${DEPPKG_DIR}/ssl } diff --git a/bacula/src/win32/build-depkgs-mingw32 b/bacula/src/win32/build-depkgs-mingw32 index f903fc8d5..affd26fb8 100755 --- a/bacula/src/win32/build-depkgs-mingw32 +++ b/bacula/src/win32/build-depkgs-mingw32 @@ -278,7 +278,7 @@ process_openssl() do_make Makefile all echo Installing openssl do_make Makefile install_sw - mkdir ${DEPPKG_DIR}/ssl + mkdir -p ${DEPPKG_DIR}/ssl cp -f apps/openssl.cnf ${DEPPKG_DIR}/ssl }