From 8346e1b067483d4d836627a267805bbe8d6e7efa Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Thu, 27 Oct 2016 14:04:58 +0200 Subject: Add install requirements to Python packages https://fedorahosted.org/freeipa/ticket/6468 Signed-off-by: Christian Heimes Reviewed-By: Martin Basti --- Makefile.python.am | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile.python.am') diff --git a/Makefile.python.am b/Makefile.python.am index c9c1a1fc5..2d6285348 100644 --- a/Makefile.python.am +++ b/Makefile.python.am @@ -44,3 +44,9 @@ dist-hook: if test -x "$(srcdir)/$${FILEN}"; then MODE=755; else MODE=644; fi; \ $(INSTALL) -D -m $${MODE} "$(srcdir)/$${FILEN}" "$(distdir)/$${FILEN}" || exit $$?; \ done + +WHEELDISTDIR = $(top_builddir)/dist/wheels +.PHONY: bdist_wheel +bdist_wheel: + rm -rf $(WHEELDISTDIR)/$(pkgname)*.whl + $(PYTHON) "$(srcdir)/setup.py" bdist_wheel --dist-dir=$(WHEELDISTDIR) -- cgit