Skip to content
Snippets Groups Projects
Commit 99e10f0d authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Remove old jpeg link fixing hack

parent c2c65d27
No related branches found
No related tags found
1 merge request!13Jpeg 8 osx fix
...@@ -58,12 +58,6 @@ if [ ! -d ${PREFIX} ]; then ...@@ -58,12 +58,6 @@ if [ ! -d ${PREFIX} ]; then
yellow_echo "[++] Bootstrapping conda installation at ${PREFIX}..." yellow_echo "[++] Bootstrapping conda installation at ${PREFIX}..."
run_cmd ${CONDA_FOLDER}/bin/conda clean --lock run_cmd ${CONDA_FOLDER}/bin/conda clean --lock
run_cmd ${CONDA_FOLDER}/bin/conda create --prefix ${PREFIX} --file env.txt --yes 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 run_cmd ${CONDA_FOLDER}/bin/conda clean --lock
else else
yellow_echo "[!!] Prefix directory ${PREFIX} exists, not re-installing..." yellow_echo "[!!] Prefix directory ${PREFIX} exists, not re-installing..."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment