From 7c990b3ab36783a859daf6da9d0aaf8bd15c2b11 Mon Sep 17 00:00:00 2001 From: Andreas Lind Date: Tue, 17 Nov 2015 17:16:19 +0100 Subject: [PATCH] Dockerfile: Update ImageMagick tarball url (they took -5 down and up put -6). --- packaging/lin/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/lin/Dockerfile b/packaging/lin/Dockerfile index 98de39f1..e5d617e8 100644 --- a/packaging/lin/Dockerfile +++ b/packaging/lin/Dockerfile @@ -72,7 +72,7 @@ RUN ./configure --prefix=${TARGET} --enable-shared --disable-static --disable-de RUN rm ${TARGET}/lib/libtiffxx* RUN mkdir ${DEPS}/magick -RUN curl -Ls http://www.imagemagick.org/download/releases/ImageMagick-6.9.2-5.tar.xz | tar xJC ${DEPS}/magick --strip-components=1 +RUN curl -Ls http://www.imagemagick.org/download/releases/ImageMagick-6.9.2-6.tar.xz | tar xJC ${DEPS}/magick --strip-components=1 WORKDIR ${DEPS}/magick RUN ./configure --prefix=${TARGET} --enable-shared --disable-static --disable-dependency-tracking --without-magick-plus-plus && make install-strip