Skip to content

Commit

Permalink
fix build errors on osx-arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoqiangwang committed Mar 17, 2024
1 parent 340031c commit b028bbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda-recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ echo Using EPICS_HOST_ARCH=$EPICS_HOST_ARCH
OUTPUT_PATH=$(dirname $(conda build --output conda-recipe))

if [ $PLATFORM == "linux" ]; then
$PYTHON setup.py install sdist bdist_egg
$PYTHON setup.py install --single-version-externally-managed --record=record.txt sdist bdist_egg
cp -f dist/*.tar.gz ${OUTPUT_PATH}
cp dist/*.egg ${OUTPUT_PATH}
elif [ $PLATFORM == "darwin" ]; then
$PYTHON setup.py install bdist_wheel
$PYTHON setup.py install --single-version-externally-managed --record=record.txt bdist_wheel
cp dist/*.whl ${OUTPUT_PATH}
fi

0 comments on commit b028bbd

Please sign in to comment.