From a294950717d29af45f0a151f975b0bdf92402468 Mon Sep 17 00:00:00 2001 From: Matthew McEachen Date: Mon, 8 Apr 2024 21:03:07 -0700 Subject: [PATCH] fix configure options --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 50215d8..dcb7c92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN apt-get update \ && cd /tmp/libraw \ && git checkout --force e58e8e43ae9fb349563c954cd56e922c59e1fde2 \ && autoreconf -fiv \ - && ./configure --prefix=/opt/photostructure/tools \ + && ./configure --enable-static --disable-lcms --disable-openmp \ && make -j `nproc` \ && /bin/bash ./libtool --tag=CXX --mode=link g++ -all-static -g -O2 -o bin/dcraw_emu samples/bin_dcraw_emu-dcraw_emu.o lib/libraw.la -ljpeg -lz -lm \ && /bin/bash ./libtool --tag=CXX --mode=link g++ -all-static -g -O2 -o bin/raw-identify samples/bin_raw_identify-raw-identify.o lib/libraw.la -ljpeg -lz -lm \