From 3b8413a6860f703ab83235189b360be6bf7c2fdc Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Mon, 26 Aug 2024 07:24:26 -0500 Subject: [PATCH] updated build system --- docker/x86_64/mingw64 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/x86_64/mingw64 b/docker/x86_64/mingw64 index e0fa4f1a..2dc59ed1 100644 --- a/docker/x86_64/mingw64 +++ b/docker/x86_64/mingw64 @@ -527,7 +527,7 @@ ENV MY_OGG_VERSION=${OGG_VERSION} RUN if [ -f "/3rd_party/ogg-v${MY_OGG_VERSION}.tar.gz" ]; then \ cd /3rd_party && sha256sum -c ./ogg-v${MY_OGG_VERSION}.tar.gz.sha256 && cd - \ && tar xvzf /3rd_party/ogg-v${MY_OGG_VERSION}.tar.gz \ - && cd ogg-${MY_OGG_VERSION} \ + && cd libogg-${MY_OGG_VERSION} \ && mkdir build \ && cd build \ && cmake .. \ @@ -539,7 +539,7 @@ RUN if [ -f "/3rd_party/ogg-v${MY_OGG_VERSION}.tar.gz" ]; then \ && make -j${MY_NUM_JOBS} \ && make install \ && cd ${MY_WORKDIR} \ - && rm -r ogg-${MY_OGG_VERSION} \ + && rm -r libogg-${MY_OGG_VERSION} \ ; fi ARG VORBIS_VERSION @@ -784,7 +784,7 @@ ENV MY_LIBEVENT_VERSION=${LIBEVENT_VERSION} RUN if [ -f "/3rd_party/libevent-${MY_LIBEVENT_VERSION}-stable.tar.gz" ]; then \ cd /3rd_party && sha256sum -c ./libevent-${MY_LIBEVENT_VERSION}-stable.tar.gz.sha256 && cd - \ && tar xvzf /3rd_party/libevent-${MY_LIBEVENT_VERSION}-stable.tar.gz \ - && cd libevent-${MY_LIBEVENT_VERSION}-stable \ + && cd libevent-release-${MY_LIBEVENT_VERSION}-stable \ && mkdir build \ && cd build \ && cmake .. \ @@ -799,7 +799,7 @@ RUN if [ -f "/3rd_party/libevent-${MY_LIBEVENT_VERSION}-stable.tar.gz" ]; then \ && make -j${MY_NUM_JOBS} \ && make install \ && cd ${MY_WORKDIR} \ - && rm -r libevent-${MY_LIBEVENT_VERSION}-stable \ + && rm -r libevent-release-${MY_LIBEVENT_VERSION}-stable \ ; fi ARG LIBSODIUM_VERSION