Remove unused variables from setup.sh

This commit is contained in:
Zach Riggle 2017-02-01 01:58:06 -05:00
parent 62b772a3d6
commit 9042f5f761
1 changed files with 0 additions and 6 deletions

View File

@ -18,12 +18,6 @@ PYVER=$(gdb -batch -q --nx -ex 'pi import platform; print(".".join(platform.pyth
PYTHON=$(gdb -batch -q --nx -ex 'pi import sys; print(sys.executable)')
PYTHON="${PYTHON}${PYVER}"
# Find the Python site-packages that we need to use so that
# GDB can find the files once we've installed them.
SITE_PACKAGES=$(gdb -batch -q --nx -ex 'pi import site; print(site.getsitepackages()[0])')
PREFIX=$(gdb -batch -q --nx -ex 'pi import sys; print(sys.prefix)')
EXEC_PREFIX=$(gdb -batch -q --nx -ex 'pi import sys; print(sys.exec_prefix)')
# Install Python dependencies
sudo ${PYTHON} -m pip install -Ur requirements.txt