Skip to content

Commit 421165e

Browse files
committed
fix build.sh
1 parent a877253 commit 421165e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

build.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ BUILD_DIRS="${LIBRMM_BUILD_DIR} ${RMM_BUILD_DIR}"
3939
VERBOSE=""
4040
BUILD_TYPE=Release
4141
INSTALL_TARGET=install
42-
PYTHON=${PYTHON:=python}
4342
CUDA_STATIC_RUNTIME=OFF
4443
RAN_CMAKE=0
4544

@@ -130,12 +129,12 @@ if (( NUMARGS == 0 )) || hasArg rmm; then
130129
cd "${REPODIR}/python"
131130
if [[ ${INSTALL_TARGET} != "" ]]; then
132131
echo "building rmm..."
133-
${PYTHON} setup.py build_ext --inplace
132+
python setup.py build_ext --inplace
134133
echo "installing rmm..."
135-
${PYTHON} setup.py install --single-version-externally-managed --record=record.txt
134+
python setup.py install --single-version-externally-managed --record=record.txt
136135
else
137136
echo "building rmm..."
138-
${PYTHON} setup.py build_ext --inplace --library-dir="${LIBRMM_BUILD_DIR}"
137+
python setup.py build_ext --inplace --library-dir="${LIBRMM_BUILD_DIR}"
139138
fi
140139

141140
fi

0 commit comments

Comments
 (0)