From 27bd5cb5fa16cb51260672201cf56351505f0a8f Mon Sep 17 00:00:00 2001 From: Christian Trautman Date: Thu, 14 Dec 2017 14:45:44 -0500 Subject: rhel_path_fix: Fix pathing issue introduce by other commit Fixes pathing issue with virtual environment creation caused by commit 21b23522861e364daf150cd997c5d60851847ef2 Change-Id: Ia2c0c44da898e40e122571e477301343d047f974 Signed-off-by: Christian Trautman --- systems/rhel/7.2/prepare_python_env.sh | 2 +- systems/rhel/7.3/prepare_python_env.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/rhel/7.2/prepare_python_env.sh b/systems/rhel/7.2/prepare_python_env.sh index 0178954e..fb5882f1 100755 --- a/systems/rhel/7.2/prepare_python_env.sh +++ b/systems/rhel/7.2/prepare_python_env.sh @@ -22,7 +22,7 @@ if [ -d "$VSPERFENV_DIR" ] ; then fi scl enable python33 " -virtualenv "$VSPERFENV_DIR" --python /usr/bin/python3 +virtualenv "$VSPERFENV_DIR" --python /opt/rh/python33/root/usr/bin/python3 source "$VSPERFENV_DIR"/bin/activate pip install -r ../requirements.txt pip install pylint diff --git a/systems/rhel/7.3/prepare_python_env.sh b/systems/rhel/7.3/prepare_python_env.sh index a9021451..b573bb9f 100755 --- a/systems/rhel/7.3/prepare_python_env.sh +++ b/systems/rhel/7.3/prepare_python_env.sh @@ -22,7 +22,7 @@ if [ -d "$VSPERFENV_DIR" ] ; then fi scl enable python33 " -virtualenv "$VSPERFENV_DIR" --python /usr/bin/python3 +virtualenv "$VSPERFENV_DIR" --python /opt/rh/python33/root/usr/bin/python3 source "$VSPERFENV_DIR"/bin/activate pip install -r ../requirements.txt pip install pylint -- cgit 1.2.3-korg