mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
5e96fbc22a
Part of the effort to port FreeIPA to Arch Linux, where Python 3 is the default. FreeIPA hasn't been ported to Python 3, so the code must be modified to run /usr/bin/python2 https://fedorahosted.org/freeipa/ticket/3438 Updated by pviktori@redhat.com
21 lines
407 B
Makefile
21 lines
407 B
Makefile
PYTHONLIBDIR ?= $(shell python2 -c "from distutils.sysconfig import *; print get_python_lib()")
|
|
PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa
|
|
CONFIGDIR ?= $(DESTDIR)/etc/ipa
|
|
|
|
all:
|
|
python2 setup.py build
|
|
|
|
install:
|
|
if [ "$(DESTDIR)" = "" ]; then \
|
|
python2 setup.py install; \
|
|
else \
|
|
python2 setup.py install --root $(DESTDIR); \
|
|
fi
|
|
|
|
clean:
|
|
rm -rf build
|
|
|
|
distclean: clean
|
|
|
|
maintainer-clean: distclean
|