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/Makefile21
1 files changed, 13 insertions, 8 deletions
diff --git a/ipapython/py_default_encoding/Makefile b/ipapython/py_default_encoding/Makefile
index 88f17f705..a73f429db 100644
--- a/ipapython/py_default_encoding/Makefile
+++ b/ipapython/py_default_encoding/Makefile
@@ -1,15 +1,20 @@
-PYTHONLIBDIR ?= $(shell python2 -c "from distutils.sysconfig import *; print get_python_lib()")
-PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa
-CONFIGDIR ?= $(DESTDIR)/etc/ipa
+PYTHON ?= /usr/bin/python2
+PYTHONLIBDIR ?= $(shell $(PYTHON) -c "from distutils.sysconfig import *; print(get_python_lib())")
+PYTHONVERSION ?= $(shell $(PYTHON) -c "import sys; print(sys.version_info[0])")
all:
- python2 setup.py build
+ if [ "$(PYTHONVERSION)" = "2" ]; then \
+ python2 setup.py build; \
+ fi
install:
- if [ "$(DESTDIR)" = "" ]; then \
- python2 setup.py install; \
- else \
- python2 setup.py install --root $(DESTDIR); \
+ # Skip this module under Python 3
+ if [ "$(PYTHONVERSION)" = "2" ]; then \
+ if [ "$(DESTDIR)" = "" ]; then \
+ python2 setup.py install; \
+ else \
+ python2 setup.py install --root $(DESTDIR); \
+ fi; \
fi
clean: