Skip to content

Commit a9c2dde

Browse files
fix typo (#791)
automerged PR by conda-forge/automerge-action
2 parents 525a685 + 8b2691e commit a9c2dde

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

recipe/build_base.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ pushd "${PREFIX}"/lib/python${VERABI_NO_DBG}
493493
sed -i.bak "s@$OLD_HOST-@@g" sysconfigfile
494494
if [[ "$target_platform" == linux* ]]; then
495495
# For linux, make sure the system gcc uses our linker
496-
sed -i.bak "s@-pthread@-pthread -B $PREFIX/shared/python_compiler_compat@g" sysconfigfile
496+
sed -i.bak "s@-pthread@-pthread -B $PREFIX/share/python_compiler_compat@g" sysconfigfile
497497
fi
498498
# Don't set -march and -mtune for system gcc
499499
sed -i.bak "s@-march=[^( |\\\"|\\\')]*@@g" sysconfigfile
@@ -518,10 +518,10 @@ pushd "${PREFIX}"/lib/python${VERABI_NO_DBG}
518518
popd
519519

520520
if [[ ${HOST} =~ .*linux.* ]]; then
521-
mkdir -p ${PREFIX}/shared/python_compiler_compat
522-
ln -s ${PREFIX}/bin/${HOST}-ld ${PREFIX}/shared/python_compiler_compat/ld
523-
echo "Files in this folder are to enhance backwards compatibility of anaconda software with older compilers." > ${PREFIX}/shared/python_compiler_compat/README
524-
echo "See: https://github.com/conda/conda/issues/6030 for more information." >> ${PREFIX}/shared/python_compiler_compat/README
521+
mkdir -p ${PREFIX}/share/python_compiler_compat
522+
ln -s ${PREFIX}/bin/${HOST}-ld ${PREFIX}/share/python_compiler_compat/ld
523+
echo "Files in this folder are to enhance backwards compatibility of anaconda software with older compilers." > ${PREFIX}/share/python_compiler_compat/README
524+
echo "See: https://github.com/conda/conda/issues/6030 for more information." >> ${PREFIX}/share/python_compiler_compat/README
525525
fi
526526

527527
python -c "import compileall,os;compileall.compile_dir(os.environ['PREFIX'])"

recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{% set ver2 = '.'.join(version.split('.')[0:2]) %}
55
{% set ver2nd = ''.join(version.split('.')[0:2]) %}
66
{% set ver3nd = ''.join(version.split('.')[0:3]) %}
7-
{% set build_number = 0 %}
7+
{% set build_number = 1 %}
88

99
# this makes the linter happy
1010
{% set channel_targets = channel_targets or 'conda-forge main' %}

0 commit comments

Comments
 (0)