summaryrefslogtreecommitdiffstats
path: root/ipapython/py_default_encoding/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ipapython/py_default_encoding/Makefile')
-rw-r--r--ipapython/py_default_encoding/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipapython/py_default_encoding/Makefile b/ipapython/py_default_encoding/Makefile
index 7cd1f6c5..88f17f70 100644
--- a/ipapython/py_default_encoding/Makefile
+++ b/ipapython/py_default_encoding/Makefile
@@ -1,15 +1,15 @@
-PYTHONLIBDIR ?= $(shell python -c "from distutils.sysconfig import *; print get_python_lib()")
+PYTHONLIBDIR ?= $(shell python2 -c "from distutils.sysconfig import *; print get_python_lib()")
PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa
CONFIGDIR ?= $(DESTDIR)/etc/ipa
all:
- python setup.py build
+ python2 setup.py build
install:
if [ "$(DESTDIR)" = "" ]; then \
- python setup.py install; \
+ python2 setup.py install; \
else \
- python setup.py install --root $(DESTDIR); \
+ python2 setup.py install --root $(DESTDIR); \
fi
clean: