From cef6bc7f4fdd2091204aac778c0ecb059dd08bc3 Mon Sep 17 00:00:00 2001 From: mcoops <70203682+mcoops@users.noreply.github.com> Date: Sat, 25 Nov 2023 16:24:28 +1000 Subject: [PATCH] fix: remove offending configure option which got removed in https://github.com/wxWidgets/wxWidgets/commit/be7860c7661756e8de36985ade760d5c9a784ab7 (#3) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a290289..0ac4fdb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get clean RUN cd / && \ git clone --depth=1 --shallow-submodules --recurse-submodules -b xlights_2023.11 https://github.com/xLightsSequencer/wxWidgets xlights_2023.11 && \ cd xlights_2023.11 && \ - ./configure --with-cxx=17 --enable-std_containers --enable-std_string --enable-std_string_conv_in_wxstring --enable-backtrace --enable-exceptions --enable-mediactrl --enable-graphics_ctx --enable-shared --disable-gtktest --disable-sdltest --with-gtk=3 --disable-pcx --disable-iff --without-libtiff --prefix=/usr && \ + ./configure --with-cxx=17 --enable-std_containers --enable-std_string_conv_in_wxstring --enable-backtrace --enable-exceptions --enable-mediactrl --enable-graphics_ctx --enable-shared --disable-gtktest --disable-sdltest --with-gtk=3 --disable-pcx --disable-iff --without-libtiff --prefix=/usr && \ make -j 4 && \ make install PREFIX=/usr && \ cd .. && \