From 99e10f0dfe50055bb97bbc92ac3730b1ba3420a8 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Wed, 5 Oct 2016 13:44:10 +0200 Subject: [PATCH] Remove old jpeg link fixing hack --- ci/bootstrap.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ci/bootstrap.sh b/ci/bootstrap.sh index b67820e..a58c412 100755 --- a/ci/bootstrap.sh +++ b/ci/bootstrap.sh @@ -58,12 +58,6 @@ if [ ! -d ${PREFIX} ]; then yellow_echo "[++] Bootstrapping conda installation at ${PREFIX}..." run_cmd ${CONDA_FOLDER}/bin/conda clean --lock run_cmd ${CONDA_FOLDER}/bin/conda create --prefix ${PREFIX} --file env.txt --yes - - # Dirty fix to libjpeg.8 compilation issues: - # https://github.com/ContinuumIO/anaconda-issues/issues/1042 - if [ "${ARCH}" == "macosx" ] && [ -e "${PREFIX}/lib/libjpeg.8.dylib" ]; then - run_cmd install_name_tool -id @rpath/libjpeg.8.dylib ${PREFIX}/lib/libjpeg.8.dylib - fi run_cmd ${CONDA_FOLDER}/bin/conda clean --lock else yellow_echo "[!!] Prefix directory ${PREFIX} exists, not re-installing..." -- GitLab