summaryrefslogtreecommitdiffstats
path: root/FUNCTIONS
diff options
context:
space:
mode:
authorVlad Glagolev2015-02-21 13:04:00 +0300
committerVlad Glagolev2015-02-21 13:04:00 +0300
commit5d08c761978d98a56d8ac4f985f26640eb328519 (patch)
tree6cf64cdc71484fbf69f7928cd9e58a316ca3cd72 /FUNCTIONS
parent2a8d29f900217fd36d36ec4b412a0a6542f6040d (diff)
Revert "FUNCTIONS - fix python2 usage"
This reverts commit 559e955724ce573573b4901423cdaea2c702924a. Conflicts: ChangeLog
Diffstat (limited to 'FUNCTIONS')
-rwxr-xr-xFUNCTIONS4
1 files changed, 2 insertions, 2 deletions
diff --git a/FUNCTIONS b/FUNCTIONS
index 10f7aa5a68..396a538211 100755
--- a/FUNCTIONS
+++ b/FUNCTIONS
@@ -453,7 +453,7 @@ function unpack_file() {
## Default build for Python2 spell.
#-------------------------------------------------------------------------
function default_build_python() {
- $PYTHON2 setup.py build "$@"
+ python2 setup.py build "$@"
}
#-------------------------------------------------------------------------
@@ -467,7 +467,7 @@ function default_build_python3() {
## Default install for Python spell.
#-------------------------------------------------------------------------
function default_install_python() {
- $PYTHON2 setup.py install --root "$INSTALL_ROOT/" "$@"
+ python2 setup.py install --root "$INSTALL_ROOT/" "$@"
}
#-------------------------------------------------------------------------